Makefile.tpl: Remove BUILD_CC stuff.
(toplev) * Makefile.tpl: Remove BUILD_CC stuff. * Makefile.in: Regenerate. (gcc) * configure.in: Replace BUILD_CC references with CC_FOR_BUILD. * configure: Regenerate. * Makefile.in: Replace BUILD_CC references with CC_FOR_BUILD. (gcc/f) * Make-lang.in: Replace BUILD_CC references with CC_FOR_BUILD. From-SVN: r68115
This commit is contained in:
parent
688d8b84d3
commit
eaf9f3b2e9
9 changed files with 116 additions and 107 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||
|
||||
* Makefile.tpl: Remove BUILD_CC stuff.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2003-06-17 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* MAINTAINERS (Write After Approval): Remove Andrew Haley.
|
||||
|
|
|
@ -150,7 +150,6 @@ CXX_FOR_BUILD = $(CXX)
|
|||
|
||||
# Special variables passed down in EXTRA_GCC_FLAGS. They are defined
|
||||
# here so that they can be overridden by Makefile fragments.
|
||||
BUILD_CC = $(CC_FOR_BUILD)
|
||||
BUILD_PREFIX = @BUILD_PREFIX@
|
||||
BUILD_PREFIX_1 = @BUILD_PREFIX_1@
|
||||
|
||||
|
@ -520,7 +519,6 @@ EXTRA_GCC_FLAGS = \
|
|||
'CC=$(CC)' \
|
||||
'CXX=$(CXX)' \
|
||||
'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
|
||||
'BUILD_CC=$(CC_FOR_BUILD)' \
|
||||
'BUILD_PREFIX=$(BUILD_PREFIX)' \
|
||||
'BUILD_PREFIX_1=$(BUILD_PREFIX_1)' \
|
||||
'NM=$(NM)' \
|
||||
|
|
|
@ -153,7 +153,6 @@ CXX_FOR_BUILD = $(CXX)
|
|||
|
||||
# Special variables passed down in EXTRA_GCC_FLAGS. They are defined
|
||||
# here so that they can be overridden by Makefile fragments.
|
||||
BUILD_CC = $(CC_FOR_BUILD)
|
||||
BUILD_PREFIX = @BUILD_PREFIX@
|
||||
BUILD_PREFIX_1 = @BUILD_PREFIX_1@
|
||||
|
||||
|
@ -523,7 +522,6 @@ EXTRA_GCC_FLAGS = \
|
|||
'CC=$(CC)' \
|
||||
'CXX=$(CXX)' \
|
||||
'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
|
||||
'BUILD_CC=$(CC_FOR_BUILD)' \
|
||||
'BUILD_PREFIX=$(BUILD_PREFIX)' \
|
||||
'BUILD_PREFIX_1=$(BUILD_PREFIX_1)' \
|
||||
'NM=$(NM)' \
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2003-06-16 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||
|
||||
* configure.in: Replace BUILD_CC references with CC_FOR_BUILD.
|
||||
* configure: Regenerate.
|
||||
* Makefile.in: Replace BUILD_CC references with CC_FOR_BUILD.
|
||||
|
||||
2003-06-17 Ranjit Mathew <rmathew@hotmail.com>
|
||||
|
||||
* install.texi (Testing): Add information on how to run Java
|
||||
|
|
128
gcc/Makefile.in
128
gcc/Makefile.in
|
@ -557,7 +557,7 @@ BUILD_PREFIX = @BUILD_PREFIX@
|
|||
# out of the way of the other rules for compiling the same source files.
|
||||
BUILD_PREFIX_1 = @BUILD_PREFIX_1@
|
||||
# Native compiler for the build machine and its switches.
|
||||
BUILD_CC = @BUILD_CC@
|
||||
CC_FOR_BUILD = @CC_FOR_BUILD@
|
||||
BUILD_CFLAGS= @BUILD_CFLAGS@ -DGENERATOR_FILE
|
||||
|
||||
# Native linker and preprocessor flags. For x-fragment overrides.
|
||||
|
@ -1384,12 +1384,12 @@ s-check : gencheck$(build_exeext) $(srcdir)/move-if-change
|
|||
$(STAMP) s-check
|
||||
|
||||
gencheck$(build_exeext) : gencheck.o $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
gencheck.o $(BUILD_LIBS)
|
||||
|
||||
gencheck.o : gencheck.c gencheck.h tree.def $(BCONFIG_H) $(SYSTEM_H) \
|
||||
coretypes.h $(GTM_H) $(lang_tree_files)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(srcdir)/gencheck.c $(OUTPUT_OPTION)
|
||||
|
||||
gencheck.h : s-gencheck ; @true
|
||||
|
@ -1850,11 +1850,11 @@ insn-conditions.o : insn-conditions.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
|
|||
$(GTM_H) $(RTL_H) $(TM_P_H) $(REGS_H) function.h $(RECOG_H) real.h output.h \
|
||||
flags.h hard-reg-set.h resource.h toplev.h reload.h gensupport.h \
|
||||
insn-constants.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) insn-conditions.c
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) insn-conditions.c
|
||||
|
||||
dummy-conditions.o : dummy-conditions.c $(BCONFIG_H) $(SYSTEM_H) \
|
||||
coretypes.h $(GTM_H) gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(srcdir)/dummy-conditions.c $(OUTPUT_OPTION)
|
||||
|
||||
insn-flags.h: s-flags ; @true
|
||||
|
@ -2050,7 +2050,7 @@ s-gtype: gengtype$(build_exeext) $(GTFILES)
|
|||
|
||||
#
|
||||
# Compile the programs that generate insn-* from the machine description.
|
||||
# They are compiled with $(BUILD_CC), and associated libraries,
|
||||
# They are compiled with $(CC_FOR_BUILD), and associated libraries,
|
||||
# since they need to run on this machine
|
||||
# even if GCC is being compiled to run on some other machine.
|
||||
|
||||
|
@ -2061,171 +2061,171 @@ s-gtype: gengtype$(build_exeext) $(GTFILES)
|
|||
|
||||
read-rtl.o: read-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) \
|
||||
$(OBSTACK_H) $(HASHTAB_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/read-rtl.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/read-rtl.c $(OUTPUT_OPTION)
|
||||
|
||||
gensupport.o: gensupport.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) \
|
||||
$(OBSTACK_H) errors.h $(HASHTAB_H) gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gensupport.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gensupport.c $(OUTPUT_OPTION)
|
||||
|
||||
genconfig$(build_exeext) : genconfig.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genconfig.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genconfig.o : genconfig.c $(RTL_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c $(OUTPUT_OPTION)
|
||||
|
||||
genflags$(build_exeext) : genflags.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genflags.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genflags.o : genflags.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c $(OUTPUT_OPTION)
|
||||
|
||||
gencodes$(build_exeext) : gencodes.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
gencodes.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
gencodes.o : gencodes.c $(RTL_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c $(OUTPUT_OPTION)
|
||||
|
||||
genconstants$(build_exeext) : genconstants.o $(BUILD_RTL) $(BUILD_EARLY_SUPPORT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genconstants.o $(BUILD_EARLY_SUPPORT) $(BUILD_RTL) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genconstants.o : genconstants.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
|
||||
errors.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genconstants.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genconstants.c $(OUTPUT_OPTION)
|
||||
|
||||
genemit$(build_exeext) : genemit.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genemit.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genemit.o : genemit.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
|
||||
errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c $(OUTPUT_OPTION)
|
||||
|
||||
genopinit$(build_exeext) : genopinit.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genopinit.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genopinit.o : genopinit.c $(RTL_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c $(OUTPUT_OPTION)
|
||||
|
||||
genrecog$(build_exeext) : genrecog.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genrecog.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genrecog.o : genrecog.c $(RTL_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c $(OUTPUT_OPTION)
|
||||
|
||||
genextract$(build_exeext) : genextract.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genextract.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genextract.o : genextract.c $(RTL_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) insn-config.h errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c $(OUTPUT_OPTION)
|
||||
|
||||
genpeep$(build_exeext) : genpeep.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genpeep.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genpeep.o : genpeep.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
|
||||
errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c $(OUTPUT_OPTION)
|
||||
|
||||
genattr$(build_exeext) : genattr.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genattr.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genattr.o : genattr.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h \
|
||||
gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c $(OUTPUT_OPTION)
|
||||
|
||||
genattrtab$(build_exeext) : genattrtab.o genautomata.o \
|
||||
$(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_VARRAY) \
|
||||
$(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genattrtab.o genautomata.o \
|
||||
$(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) $(BUILD_ERRORS) \
|
||||
$(BUILD_VARRAY) $(BUILD_LIBS) -lm
|
||||
|
||||
genattrtab.o : genattrtab.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(GGC_H) gensupport.h genattrtab.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c $(OUTPUT_OPTION)
|
||||
|
||||
genautomata.o : genautomata.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) errors.h varray.h genattrtab.h $(HASHTAB_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genautomata.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genautomata.c $(OUTPUT_OPTION)
|
||||
|
||||
genoutput$(build_exeext) : genoutput.o $(BUILD_RTL) $(BUILD_SUPPORT) \
|
||||
$(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genoutput.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genoutput.o : genoutput.c $(RTL_H) $(BCONFIG_H) \
|
||||
$(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c $(OUTPUT_OPTION)
|
||||
|
||||
gengenrtl$(build_exeext) : gengenrtl.o $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
gengenrtl.o $(BUILD_LIBS)
|
||||
|
||||
gengenrtl.o : gengenrtl.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
|
||||
$(GTM_H) real.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gengenrtl.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gengenrtl.c $(OUTPUT_OPTION)
|
||||
|
||||
genpreds$(build_exeext) : genpreds.o $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genpreds.o $(BUILD_LIBS)
|
||||
|
||||
genpreds.o : genpreds.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genpreds.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genpreds.c $(OUTPUT_OPTION)
|
||||
|
||||
gengtype$(build_exeext) : gengtype.o gengtype-lex.o gengtype-yacc.o \
|
||||
$(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
gengtype.o gengtype-lex.o gengtype-yacc.o $(BUILD_LIBS)
|
||||
|
||||
gengtype.o : gengtype.c gengtype.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
|
||||
real.h $(RTL_BASE_H) gtyp-gen.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(srcdir)/gengtype.c $(OUTPUT_OPTION)
|
||||
|
||||
gengtype-lex.o : $(parsedir)/gengtype-lex.c gengtype.h $(parsedir)/gengtype-yacc.c \
|
||||
$(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(parsedir)/gengtype-lex.c $(OUTPUT_OPTION)
|
||||
|
||||
gengtype-yacc.o : $(parsedir)/gengtype-yacc.c gengtype.h $(BCONFIG_H) $(SYSTEM_H) \
|
||||
coretypes.h $(GTM_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(parsedir)/gengtype-yacc.c $(OUTPUT_OPTION)
|
||||
|
||||
# The sed command works around a bug in flex-2.5.4.
|
||||
|
@ -2250,13 +2250,13 @@ $(parsedir)/gengtype-yacc.c: $(srcdir)/gengtype-yacc.y
|
|||
|
||||
genconditions$(build_exeext) : genconditions.o $(BUILD_EARLY_SUPPORT) \
|
||||
$(BUILD_RTL) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
genconditions.o $(BUILD_EARLY_SUPPORT) $(BUILD_RTL) \
|
||||
$(BUILD_ERRORS) $(BUILD_LIBS)
|
||||
|
||||
genconditions.o : genconditions.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
|
||||
$(GTM_H) errors.h
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(srcdir)/genconditions.c $(OUTPUT_OPTION)
|
||||
|
||||
#
|
||||
|
@ -2268,37 +2268,37 @@ $(BUILD_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYST
|
|||
real.h $(GGC_H) errors.h
|
||||
rm -f $(BUILD_PREFIX)rtl.c
|
||||
sed -e 's/config[.]h/bconfig.h/' $(srcdir)/rtl.c > $(BUILD_PREFIX)rtl.c
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)rtl.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)rtl.c $(OUTPUT_OPTION)
|
||||
|
||||
print-rtl1.o: $(srcdir)/print-rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) \
|
||||
$(RTL_H) $(TREE_H) hard-reg-set.h $(BASIC_BLOCK_H)
|
||||
rm -f print-rtl1.c
|
||||
sed -e 's/config[.]h/bconfig.h/' $(srcdir)/print-rtl.c > print-rtl1.c
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) print-rtl1.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) print-rtl1.c $(OUTPUT_OPTION)
|
||||
|
||||
$(BUILD_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \
|
||||
$(RTL_H) flags.h $(BASIC_BLOCK_H) $(REGS_H) $(GGC_H)
|
||||
rm -f $(BUILD_PREFIX)bitmap.c
|
||||
sed -e 's/config[.]h/bconfig.h/' $(srcdir)/bitmap.c > $(BUILD_PREFIX)bitmap.c
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)bitmap.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)bitmap.c $(OUTPUT_OPTION)
|
||||
|
||||
$(BUILD_PREFIX_1)errors.o: errors.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) errors.h
|
||||
rm -f $(BUILD_PREFIX)errors.c
|
||||
sed -e 's/config[.]h/bconfig.h/' $(srcdir)/errors.c > $(BUILD_PREFIX)errors.c
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)errors.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)errors.c $(OUTPUT_OPTION)
|
||||
|
||||
$(BUILD_PREFIX_1)varray.o: varray.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) varray.h \
|
||||
$(RTL_H) $(GGC_H) $(TREE_H) bitmap.h errors.h
|
||||
rm -f $(BUILD_PREFIX)varray.c
|
||||
sed -e 's/config[.]h/bconfig.h/' $(srcdir)/varray.c > \
|
||||
$(BUILD_PREFIX)varray.c
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(BUILD_PREFIX)varray.c $(OUTPUT_OPTION)
|
||||
|
||||
$(BUILD_PREFIX_1)ggc-none.o: ggc-none.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) $(GGC_H)
|
||||
rm -f $(BUILD_PREFIX)ggc-none.c
|
||||
sed -e 's/config[.]h/bconfig.h/' $(srcdir)/ggc-none.c > $(BUILD_PREFIX)ggc-none.c
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)ggc-none.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)ggc-none.c $(OUTPUT_OPTION)
|
||||
|
||||
#
|
||||
# Remake internationalization support.
|
||||
|
@ -2444,9 +2444,9 @@ test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
|
|||
|
||||
# gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c
|
||||
gcov-iov.o: gcov-iov.c version.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) coretypes.h $(TM_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gcov-iov.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gcov-iov.c $(OUTPUT_OPTION)
|
||||
gcov-iov$(build_exeext): gcov-iov.o
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) gcov-iov.o -o $@
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) gcov-iov.o -o $@
|
||||
gcov-iov.h: s-iov
|
||||
s-iov: gcov-iov$(build_exeext) $(srcdir)/move-if-change
|
||||
./gcov-iov$(build_exeext) > tmp-gcov-iov.h
|
||||
|
@ -2516,7 +2516,7 @@ fixinc.sh: $(FIXINCSRCDIR)/mkfixinc.sh $(FIXINCSRCDIR)/fixincl.c \
|
|||
$(FIXINCSRCDIR)/server.c $(FIXINCSRCDIR)/gnu-regex.h \
|
||||
$(FIXINCSRCDIR)/server.h $(FIXINCSRCDIR)/inclhack.def specs.ready
|
||||
(MAKE="$(MAKE)"; srcdir=`cd $(srcdir)/fixinc && ${PWD}` ; \
|
||||
CC="$(BUILD_CC)"; CFLAGS="$(BUILD_CFLAGS)"; LDFLAGS="$(BUILD_LDFLAGS)"; \
|
||||
CC="$(CC_FOR_BUILD)"; CFLAGS="$(BUILD_CFLAGS)"; LDFLAGS="$(BUILD_LDFLAGS)"; \
|
||||
WARN_CFLAGS="$(WARN_CFLAGS)"; LIBERTY=`pwd`/"$(BUILD_LIBIBERTY)"; \
|
||||
export MAKE srcdir CC CFLAGS LDFLAGS WARN_CFLAGS LIBERTY; \
|
||||
cd ./fixinc && \
|
||||
|
@ -2550,7 +2550,7 @@ stmp-fixinc: fixinc.sh gsyslimits.h
|
|||
$(STAMP) stmp-fixinc
|
||||
|
||||
# Files related to the fixproto script.
|
||||
# gen-protos and fix-header are compiled with BUILD_CC, but they are only
|
||||
# gen-protos and fix-header are compiled with CC_FOR_BUILD, but they are only
|
||||
# used in native and host-x-target builds, so it's safe to link them with
|
||||
# libiberty.a.
|
||||
|
||||
|
@ -2567,14 +2567,14 @@ deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
|
|||
|
||||
GEN_PROTOS_OBJS = gen-protos.o scan.o
|
||||
gen-protos$(build_exeext): $(GEN_PROTOS_OBJS)
|
||||
${BUILD_CC} $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
${CC_FOR_BUILD} $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
|
||||
$(GEN_PROTOS_OBJS) $(BUILD_LIBS)
|
||||
|
||||
gen-protos.o: gen-protos.c scan.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c $(OUTPUT_OPTION)
|
||||
|
||||
scan.o: scan.c scan.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c $(OUTPUT_OPTION)
|
||||
|
||||
xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos$(build_exeext) Makefile
|
||||
sed -e s/TARGET_GETGROUPS_T/$(TARGET_GETGROUPS_T)/ \
|
||||
|
@ -2590,15 +2590,15 @@ xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos$(build_
|
|||
# so we can (indeed, must) use $(LIBDEPS) and $(LIBS).
|
||||
fix-header$(build_exeext): fix-header.o scan-decls.o scan.o xsys-protos.h \
|
||||
c-incpath.o cppdefault.o prefix.o $(LIBDEPS) libcpp.a
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ fix-header.o \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ fix-header.o \
|
||||
c-incpath.o cppdefault.o scan-decls.o prefix.o scan.o libcpp.a $(LIBS)
|
||||
|
||||
fix-header.o: fix-header.c $(OBSTACK_H) scan.h \
|
||||
xsys-protos.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(CPPLIB_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c $(OUTPUT_OPTION)
|
||||
|
||||
scan-decls.o: scan-decls.c scan.h $(CPPLIB_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
|
||||
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c $(OUTPUT_OPTION)
|
||||
$(CC_FOR_BUILD) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c $(OUTPUT_OPTION)
|
||||
|
||||
# stmp-fixproto depends on this, not on fix-header directly.
|
||||
# The idea is to make sure fix-header gets built,
|
||||
|
@ -3504,7 +3504,7 @@ stage1_copy: stage1_build
|
|||
echo stage2_build > stage_last
|
||||
|
||||
stage2_build: stage1_copy
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" CC_FOR_BUILD="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
|
||||
STAGE_PREFIX=stage1/ \
|
||||
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
||||
$(STAGE2_FLAGS_TO_PASS)
|
||||
|
@ -3517,7 +3517,7 @@ stage2_copy: stage2_build
|
|||
echo stage3_build > stage_last
|
||||
|
||||
stageprofile_build: stage1_copy
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" CC_FOR_BUILD="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
|
||||
STAGE_PREFIX=stage1/ \
|
||||
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
||||
$(STAGEPROFILE_FLAGS_TO_PASS)
|
||||
|
@ -3530,7 +3530,7 @@ stageprofile_copy: stageprofile_build
|
|||
echo stagefeedback_build > stage_last
|
||||
|
||||
stage3_build: stage2_copy
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" \
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" CC_FOR_BUILD="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" \
|
||||
STAGE_PREFIX=stage2/ \
|
||||
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
||||
$(STAGE2_FLAGS_TO_PASS)
|
||||
|
@ -3538,7 +3538,7 @@ stage3_build: stage2_copy
|
|||
echo stage3_build > stage_last
|
||||
|
||||
stagefeedback_build: stageprofile_copy stage1_copy
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" CC_FOR_BUILD="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
|
||||
STAGE_PREFIX=stage1/ \
|
||||
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
||||
$(STAGEFEEDBACK_FLAGS_TO_PASS)
|
||||
|
@ -3557,7 +3557,7 @@ stage3_copy: stage3_build
|
|||
echo stage4_build > stage_last
|
||||
|
||||
stage4_build: stage3_copy
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" \
|
||||
$(MAKE) CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" CC_FOR_BUILD="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" \
|
||||
STAGE_PREFIX=stage3/ \
|
||||
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
||||
$(STAGE2_FLAGS_TO_PASS)
|
||||
|
|
65
gcc/configure
vendored
65
gcc/configure
vendored
|
@ -6967,7 +6967,7 @@ fi
|
|||
# These are the normal (build=host) settings:
|
||||
BUILD_PREFIX=
|
||||
BUILD_PREFIX_1=ignore-
|
||||
BUILD_CC='$(CC)'
|
||||
CC_FOR_BUILD='$(CC)'
|
||||
BUILD_CFLAGS='$(ALL_CFLAGS)'
|
||||
|
||||
STMP_FIXINC=stmp-fixinc
|
||||
|
@ -6978,7 +6978,6 @@ if test x$build != x$host
|
|||
then
|
||||
BUILD_PREFIX=build-
|
||||
BUILD_PREFIX_1=build-
|
||||
BUILD_CC='$(CC_FOR_BUILD)'
|
||||
BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD) $(XCFLAGS)'
|
||||
|
||||
if test "x$TARGET_SYSTEM_ROOT" = x; then
|
||||
|
@ -7018,7 +7017,7 @@ esac
|
|||
# build->target assembler and hope that it will have the same features
|
||||
# as the host->target assembler we'll be using.
|
||||
echo $ac_n "checking what assembler to use""... $ac_c" 1>&6
|
||||
echo "configure:7022: checking what assembler to use" >&5
|
||||
echo "configure:7021: checking what assembler to use" >&5
|
||||
in_tree_gas=no
|
||||
gcc_cv_as=
|
||||
gcc_cv_gas_major_version=
|
||||
|
@ -7129,7 +7128,7 @@ esac
|
|||
# build->target linker and hope that it will have the same features
|
||||
# as the host->target linker we'll be using.
|
||||
echo $ac_n "checking what linker to use""... $ac_c" 1>&6
|
||||
echo "configure:7133: checking what linker to use" >&5
|
||||
echo "configure:7132: checking what linker to use" >&5
|
||||
in_tree_ld=no
|
||||
gcc_cv_ld=
|
||||
gcc_cv_gld_major_version=
|
||||
|
@ -7232,7 +7231,7 @@ esac
|
|||
# Figure out what nm we will be using.
|
||||
gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
|
||||
echo $ac_n "checking what nm to use""... $ac_c" 1>&6
|
||||
echo "configure:7236: checking what nm to use" >&5
|
||||
echo "configure:7235: checking what nm to use" >&5
|
||||
in_tree_nm=no
|
||||
if test -x nm$host_exeext; then
|
||||
gcc_cv_nm=./nm$host_exeext
|
||||
|
@ -7255,7 +7254,7 @@ esac
|
|||
|
||||
# Figure out what objdump we will be using.
|
||||
echo $ac_n "checking what objdump to use""... $ac_c" 1>&6
|
||||
echo "configure:7259: checking what objdump to use" >&5
|
||||
echo "configure:7258: checking what objdump to use" >&5
|
||||
in_tree_objdump=no
|
||||
if test -x objdump$host_exeext; then
|
||||
gcc_cv_objdump=./objdump$host_exeext
|
||||
|
@ -7280,7 +7279,7 @@ esac
|
|||
|
||||
# Figure out what assembler alignment features are present.
|
||||
echo $ac_n "checking assembler alignment features""... $ac_c" 1>&6
|
||||
echo "configure:7284: checking assembler alignment features" >&5
|
||||
echo "configure:7283: checking assembler alignment features" >&5
|
||||
gcc_cv_as_alignment_features=none
|
||||
if test $in_tree_gas = yes; then
|
||||
# Gas version 2.6 and later support for .balign and .p2align.
|
||||
|
@ -7341,7 +7340,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_alignment_features" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler subsection support""... $ac_c" 1>&6
|
||||
echo "configure:7345: checking assembler subsection support" >&5
|
||||
echo "configure:7344: checking assembler subsection support" >&5
|
||||
gcc_cv_as_subsections=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -7390,7 +7389,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_subsections" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler weak support""... $ac_c" 1>&6
|
||||
echo "configure:7394: checking assembler weak support" >&5
|
||||
echo "configure:7393: checking assembler weak support" >&5
|
||||
gcc_cv_as_weak=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -7420,7 +7419,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_weak" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler hidden support""... $ac_c" 1>&6
|
||||
echo "configure:7424: checking assembler hidden support" >&5
|
||||
echo "configure:7423: checking assembler hidden support" >&5
|
||||
gcc_cv_as_hidden=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -7501,7 +7500,7 @@ libgcc_visibility=$gcc_cv_as_hidden
|
|||
|
||||
|
||||
echo $ac_n "checking assembler leb128 support""... $ac_c" 1>&6
|
||||
echo "configure:7505: checking assembler leb128 support" >&5
|
||||
echo "configure:7504: checking assembler leb128 support" >&5
|
||||
gcc_cv_as_leb128=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -7555,7 +7554,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_leb128" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler eh_frame optimization""... $ac_c" 1>&6
|
||||
echo "configure:7559: checking assembler eh_frame optimization" >&5
|
||||
echo "configure:7558: checking assembler eh_frame optimization" >&5
|
||||
gcc_cv_as_eh_frame=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -7645,7 +7644,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_eh_frame" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler section merging support""... $ac_c" 1>&6
|
||||
echo "configure:7649: checking assembler section merging support" >&5
|
||||
echo "configure:7648: checking assembler section merging support" >&5
|
||||
gcc_cv_as_shf_merge=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -7677,7 +7676,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_shf_merge" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler thread-local storage support""... $ac_c" 1>&6
|
||||
echo "configure:7681: checking assembler thread-local storage support" >&5
|
||||
echo "configure:7680: checking assembler thread-local storage support" >&5
|
||||
gcc_cv_as_tls=no
|
||||
conftest_s=
|
||||
tls_first_major=
|
||||
|
@ -7887,7 +7886,7 @@ case "$target" in
|
|||
# All TARGET_ABI_OSF targets.
|
||||
alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*)
|
||||
echo $ac_n "checking assembler supports explicit relocations""... $ac_c" 1>&6
|
||||
echo "configure:7891: checking assembler supports explicit relocations" >&5
|
||||
echo "configure:7890: checking assembler supports explicit relocations" >&5
|
||||
if eval "test \"`echo '$''{'gcc_cv_as_explicit_relocs'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
|
@ -7940,7 +7939,7 @@ EOF
|
|||
;;
|
||||
sparc*-*-*)
|
||||
echo $ac_n "checking assembler .register pseudo-op support""... $ac_c" 1>&6
|
||||
echo "configure:7944: checking assembler .register pseudo-op support" >&5
|
||||
echo "configure:7943: checking assembler .register pseudo-op support" >&5
|
||||
if eval "test \"`echo '$''{'gcc_cv_as_register_pseudo_op'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
|
@ -7968,7 +7967,7 @@ EOF
|
|||
fi
|
||||
|
||||
echo $ac_n "checking assembler supports -relax""... $ac_c" 1>&6
|
||||
echo "configure:7972: checking assembler supports -relax" >&5
|
||||
echo "configure:7971: checking assembler supports -relax" >&5
|
||||
if eval "test \"`echo '$''{'gcc_cv_as_relax_opt'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
|
@ -7996,7 +7995,7 @@ EOF
|
|||
fi
|
||||
|
||||
echo $ac_n "checking assembler and linker support unaligned pc related relocs""... $ac_c" 1>&6
|
||||
echo "configure:8000: checking assembler and linker support unaligned pc related relocs" >&5
|
||||
echo "configure:7999: checking assembler and linker support unaligned pc related relocs" >&5
|
||||
if eval "test \"`echo '$''{'gcc_cv_as_sparc_ua_pcrel'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
|
@ -8023,7 +8022,7 @@ EOF
|
|||
fi
|
||||
|
||||
echo $ac_n "checking assembler and linker support unaligned pc related relocs against hidden symbols""... $ac_c" 1>&6
|
||||
echo "configure:8027: checking assembler and linker support unaligned pc related relocs against hidden symbols" >&5
|
||||
echo "configure:8026: checking assembler and linker support unaligned pc related relocs against hidden symbols" >&5
|
||||
if eval "test \"`echo '$''{'gcc_cv_as_sparc_ua_pcrel_hidden'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
|
@ -8063,7 +8062,7 @@ EOF
|
|||
fi
|
||||
|
||||
echo $ac_n "checking for assembler offsetable %lo() support""... $ac_c" 1>&6
|
||||
echo "configure:8067: checking for assembler offsetable %lo() support" >&5
|
||||
echo "configure:8066: checking for assembler offsetable %lo() support" >&5
|
||||
if eval "test \"`echo '$''{'gcc_cv_as_offsetable_lo10'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
|
@ -8102,7 +8101,7 @@ EOF
|
|||
|
||||
i[34567]86-*-* | x86_64-*-*)
|
||||
echo $ac_n "checking assembler instructions""... $ac_c" 1>&6
|
||||
echo "configure:8106: checking assembler instructions" >&5
|
||||
echo "configure:8105: checking assembler instructions" >&5
|
||||
gcc_cv_as_instructions=
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -8136,7 +8135,7 @@ EOF
|
|||
echo "$ac_t""$gcc_cv_as_instructions" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler GOTOFF in data directives""... $ac_c" 1>&6
|
||||
echo "configure:8140: checking assembler GOTOFF in data directives" >&5
|
||||
echo "configure:8139: checking assembler GOTOFF in data directives" >&5
|
||||
gcc_cv_as_gotoff_in_data=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -8170,7 +8169,7 @@ EOF
|
|||
|
||||
ia64*-*-*)
|
||||
echo $ac_n "checking assembler supports ltoffx and ldxmov""... $ac_c" 1>&6
|
||||
echo "configure:8174: checking assembler supports ltoffx and ldxmov" >&5
|
||||
echo "configure:8173: checking assembler supports ltoffx and ldxmov" >&5
|
||||
if eval "test \"`echo '$''{'gcc_cv_as_ltoffx_ldxmov_relocs'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
|
@ -8215,7 +8214,7 @@ EOF
|
|||
esac
|
||||
|
||||
echo $ac_n "checking assembler dwarf2 debug_line support""... $ac_c" 1>&6
|
||||
echo "configure:8219: checking assembler dwarf2 debug_line support" >&5
|
||||
echo "configure:8218: checking assembler dwarf2 debug_line support" >&5
|
||||
gcc_cv_as_dwarf2_debug_line=no
|
||||
# ??? Not all targets support dwarf2 debug_line, even within a version
|
||||
# of gas. Moreover, we need to emit a valid instruction to trigger any
|
||||
|
@ -8281,7 +8280,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_dwarf2_debug_line" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler --gdwarf2 support""... $ac_c" 1>&6
|
||||
echo "configure:8285: checking assembler --gdwarf2 support" >&5
|
||||
echo "configure:8284: checking assembler --gdwarf2 support" >&5
|
||||
gcc_cv_as_gdwarf2_flag=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -8315,7 +8314,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_gdwarf2_flag" 1>&6
|
||||
|
||||
echo $ac_n "checking assembler --gstabs support""... $ac_c" 1>&6
|
||||
echo "configure:8319: checking assembler --gstabs support" >&5
|
||||
echo "configure:8318: checking assembler --gstabs support" >&5
|
||||
gcc_cv_as_gstabs_flag=no
|
||||
if test $in_tree_gas = yes ; then
|
||||
if test $gcc_cv_gas_major_version -eq 2 \
|
||||
|
@ -8348,7 +8347,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_as_gstabs_flag" 1>&6
|
||||
|
||||
echo $ac_n "checking linker read-only and read-write section mixing""... $ac_c" 1>&6
|
||||
echo "configure:8352: checking linker read-only and read-write section mixing" >&5
|
||||
echo "configure:8351: checking linker read-only and read-write section mixing" >&5
|
||||
gcc_cv_ld_ro_rw_mix=unknown
|
||||
if test $in_tree_ld = yes ; then
|
||||
if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 10 -o "$gcc_cv_gld_major_version" -gt 2 && grep 'EMUL = elf' ../ld/Makefile > /dev/null; then
|
||||
|
@ -8386,7 +8385,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_ld_ro_rw_mix" 1>&6
|
||||
|
||||
echo $ac_n "checking linker PT_GNU_EH_FRAME support""... $ac_c" 1>&6
|
||||
echo "configure:8390: checking linker PT_GNU_EH_FRAME support" >&5
|
||||
echo "configure:8389: checking linker PT_GNU_EH_FRAME support" >&5
|
||||
gcc_cv_ld_eh_frame_hdr=no
|
||||
if test $in_tree_ld = yes ; then
|
||||
if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 12 -o "$gcc_cv_gld_major_version" -gt 2 && grep 'EMUL = elf' ../ld/Makefile > /dev/null; then
|
||||
|
@ -8407,7 +8406,7 @@ fi
|
|||
echo "$ac_t""$gcc_cv_ld_eh_frame_hdr" 1>&6
|
||||
|
||||
echo $ac_n "checking linker position independent executable support""... $ac_c" 1>&6
|
||||
echo "configure:8411: checking linker position independent executable support" >&5
|
||||
echo "configure:8410: checking linker position independent executable support" >&5
|
||||
gcc_cv_ld_pie=no
|
||||
if test $in_tree_ld = yes ; then
|
||||
if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 15 -o "$gcc_cv_gld_major_version" -gt 2 && grep 'EMUL = elf' ../ld/Makefile > /dev/null; then
|
||||
|
@ -8431,7 +8430,7 @@ echo "$ac_t""$gcc_cv_ld_pie" 1>&6
|
|||
case "$target" in
|
||||
mips*-*-*)
|
||||
echo $ac_n "checking whether libgloss uses STARTUP directives consistently""... $ac_c" 1>&6
|
||||
echo "configure:8435: checking whether libgloss uses STARTUP directives consistently" >&5
|
||||
echo "configure:8434: checking whether libgloss uses STARTUP directives consistently" >&5
|
||||
gcc_cv_mips_libgloss_startup=no
|
||||
gcc_cv_libgloss_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/libgloss
|
||||
if test "x$exec_prefix" = xNONE; then
|
||||
|
@ -8459,7 +8458,7 @@ EOF
|
|||
echo "$ac_t""$gcc_cv_mips_libgloss_startup" 1>&6
|
||||
|
||||
echo $ac_n "checking whether the assembler has explicit relocation support""... $ac_c" 1>&6
|
||||
echo "configure:8463: checking whether the assembler has explicit relocation support" >&5
|
||||
echo "configure:8462: checking whether the assembler has explicit relocation support" >&5
|
||||
if test x$gcc_cv_mips_explicit_relocs = x; then
|
||||
gcc_cv_mips_explicit_relocs=no
|
||||
if test $in_tree_gas = yes; then
|
||||
|
@ -8665,7 +8664,7 @@ fi
|
|||
|
||||
|
||||
echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
|
||||
echo "configure:8669: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
||||
echo "configure:8668: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
||||
# Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
|
||||
if test "${enable_maintainer_mode+set}" = set; then
|
||||
enableval="$enable_maintainer_mode"
|
||||
|
@ -9225,7 +9224,7 @@ s%@SYSTEM_HEADER_DIR@%$SYSTEM_HEADER_DIR%g
|
|||
s%@inhibit_libc@%$inhibit_libc%g
|
||||
s%@BUILD_PREFIX@%$BUILD_PREFIX%g
|
||||
s%@BUILD_PREFIX_1@%$BUILD_PREFIX_1%g
|
||||
s%@BUILD_CC@%$BUILD_CC%g
|
||||
s%@CC_FOR_BUILD@%$CC_FOR_BUILD%g
|
||||
s%@BUILD_CFLAGS@%$BUILD_CFLAGS%g
|
||||
s%@STMP_FIXINC@%$STMP_FIXINC%g
|
||||
s%@STMP_FIXPROTO@%$STMP_FIXPROTO%g
|
||||
|
|
|
@ -1418,7 +1418,7 @@ AC_SUBST(inhibit_libc)
|
|||
# These are the normal (build=host) settings:
|
||||
BUILD_PREFIX= AC_SUBST(BUILD_PREFIX)
|
||||
BUILD_PREFIX_1=ignore- AC_SUBST(BUILD_PREFIX_1)
|
||||
BUILD_CC='$(CC)' AC_SUBST(BUILD_CC)
|
||||
CC_FOR_BUILD='$(CC)' AC_SUBST(CC_FOR_BUILD)
|
||||
BUILD_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(BUILD_CFLAGS)
|
||||
|
||||
STMP_FIXINC=stmp-fixinc AC_SUBST(STMP_FIXINC)
|
||||
|
@ -1429,7 +1429,6 @@ if test x$build != x$host
|
|||
then
|
||||
BUILD_PREFIX=build-
|
||||
BUILD_PREFIX_1=build-
|
||||
BUILD_CC='$(CC_FOR_BUILD)'
|
||||
BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD) $(XCFLAGS)'
|
||||
|
||||
if test "x$TARGET_SYSTEM_ROOT" = x; then
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2003-06-17 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||
|
||||
* Make-lang.in: Replace BUILD_CC references with CC_FOR_BUILD.
|
||||
|
||||
Sun Jun 15 15:56:51 2003 Neil Booth <neil@daikokuya.co.uk>
|
||||
|
||||
* lang.opt: Declare F77.
|
||||
|
|
|
@ -129,11 +129,11 @@ f/str-ot.h f/str-ot.j: f/fini$(build_exeext) f/str-ot.fin
|
|||
./f/fini$(build_exeext) $(srcdir)/f/str-ot.fin f/str-ot.j f/str-ot.h
|
||||
|
||||
f/fini$(build_exeext): f/fini.o $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o f/fini$(build_exeext) \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o f/fini$(build_exeext) \
|
||||
f/fini.o $(BUILD_LIBS)
|
||||
|
||||
f/fini.o:
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
|
||||
-c $(srcdir)/f/fini.c $(OUTPUT_OPTION)
|
||||
|
||||
gt-f-lex.h gt-f-where.h gt-f-com.h gt-f-ste.h gtype-f.h : s-gtype; @true
|
||||
|
@ -219,7 +219,7 @@ $(srcdir)/f/intdoc.texi: $(INTDOC_DEPS) $(srcdir)/f/intdoc.in
|
|||
|
||||
f/intdoc$(build_exeext): $(INTDOC_DEPS) f/intdoc.h0 bconfig.h \
|
||||
$(SYSTEM_H) coretypes.h $(TM_H) $(BUILD_LIBDEPS)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) \
|
||||
$(srcdir)/f/intdoc.c $(BUILD_LIBS) -o f/intdoc$(build_exeext)
|
||||
|
||||
f/intdoc.h0: f/intdoc.in f/ansify$(build_exeext)
|
||||
|
@ -227,7 +227,7 @@ f/intdoc.h0: f/intdoc.in f/ansify$(build_exeext)
|
|||
< $(srcdir)/f/intdoc.in > f/intdoc.h0
|
||||
|
||||
f/ansify$(build_exeext): f/ansify.c bconfig.h $(SYSTEM_H) coretypes.h $(TM_H)
|
||||
$(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) \
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) \
|
||||
$(srcdir)/f/ansify.c -o f/ansify$(build_exeext)
|
||||
|
||||
$(srcdir)/f/BUGS: f/bugs0.texi f/bugs.texi f/root.texi
|
||||
|
|
Loading…
Add table
Reference in a new issue