From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10785 invoked by alias); 30 May 2002 18:04:59 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 10750 invoked from network); 30 May 2002 18:04:57 -0000 Received: from unknown (HELO nerodeguest) (24.161.107.98) by sources.redhat.com with SMTP; 30 May 2002 18:04:57 -0000 Received: from neroden by nerodeguest with local (Exim 3.35 #1 (Debian)) id 17DUHz-0000pS-00; Thu, 30 May 2002 14:04:43 -0400 Date: Thu, 30 May 2002 11:07:00 -0000 To: gcc-patches@gcc.gnu.org Cc: gdb-patches@sources.redhat.com, binutils@sources.redhat.com, dj@redhat.com Subject: [patch] correct nomenclature: HOST_PREFIX to BUILD_PREFIX Message-ID: <20020530180443.GA3182@doctormoo.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i From: Nathanael Nerode X-SW-Source: 2002-05/txt/msg01027.txt.bz2 I submitted this earlier, but I lost my copy, it's unreviewed, and the affected files have changed a little, so I'm submitting it again. This starts to correct the usage of "HOST" to mean "BUILD" in gcc's Makefiles and configure files, by changing all uses of HOST_PREFIX and HOST_PREFIX_1. It's pure search and replace. Obviously there's a lot more renaming to do (HOST_CC etc.), but this is big enough already by itself. Tested on i686-pc-linux-gnu. CC'ed to binutils and gdb-patches because it affects toplevel configure and toplevel Makefile.in. I'd like to get this into mainline quickly; it's a simple change which probably can't cause trouble, but it affects commonly modified files, so it can go stale relatively easily. 2002-05-14 Nathanael Nerode * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX, BUILD_PREFIX_1, to correct nomenclature. * configure: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX, BUILD_PREFIX_1, to correct nomenclature. * gcc/Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX, BUILD_PREFIX_1, to correct nomenclature. * gcc/configure.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX, BUILD_PREFIX_1, to correct nomenclature. * gcc/mklibgcc.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX, BUILD_PREFIX_1, to correct nomenclature. * gcc/config/arc/t-arc: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX, BUILD_PREFIX_1, to correct nomenclature. Index: gcc/Makefile.in =================================================================== RCS file: /cvsroot/gcc/gcc/gcc/Makefile.in,v retrieving revision 1.882 diff -c -3 -p -r1.882 Makefile.in *** gcc/Makefile.in 28 May 2002 17:32:04 -0000 1.882 --- gcc/Makefile.in 30 May 2002 17:57:01 -0000 *************** DIR = ../gcc *** 468,479 **** # Flags to use when cross-building GCC. # Prefix to apply to names of object files when using them # to run on the machine we are compiling on. ! HOST_PREFIX = @HOST_PREFIX@ # Prefix to apply to names of object files when compiling them # to run on the machine we are compiling on. # The default for this variable is chosen to keep these rules # out of the way of the other rules for compiling the same source files. ! HOST_PREFIX_1 = @HOST_PREFIX_1@ # Native compiler for the build machine and its switches. HOST_CC = @HOST_CC@ HOST_CFLAGS= @HOST_CFLAGS@ -DGENERATOR_FILE --- 468,479 ---- # Flags to use when cross-building GCC. # Prefix to apply to names of object files when using them # to run on the machine we are compiling on. ! BUILD_PREFIX = @BUILD_PREFIX@ # Prefix to apply to names of object files when compiling them # to run on the machine we are compiling on. # The default for this variable is chosen to keep these rules # 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. HOST_CC = @HOST_CC@ HOST_CFLAGS= @HOST_CFLAGS@ -DGENERATOR_FILE *************** SYSLIBS = @GNAT_LIBEXC@ *** 623,634 **** # even if we are cross-building GCC. HOST_LIBS = $(BUILD_LIBIBERTY) ! HOST_RTL = $(HOST_PREFIX)rtl.o read-rtl.o $(HOST_PREFIX)bitmap.o \ ! $(HOST_PREFIX)ggc-none.o gensupport.o ! HOST_PRINT = $(HOST_PREFIX)print-rtl.o ! HOST_ERRORS = $(HOST_PREFIX)errors.o ! HOST_VARRAY = $(HOST_PREFIX)varray.o # Specify the directories to be searched for header files. # Both . and srcdir are used, in that order, --- 623,634 ---- # even if we are cross-building GCC. HOST_LIBS = $(BUILD_LIBIBERTY) ! HOST_RTL = $(BUILD_PREFIX)rtl.o read-rtl.o $(BUILD_PREFIX)bitmap.o \ ! $(BUILD_PREFIX)ggc-none.o gensupport.o ! HOST_PRINT = $(BUILD_PREFIX)print-rtl.o ! HOST_ERRORS = $(BUILD_PREFIX)errors.o ! HOST_VARRAY = $(BUILD_PREFIX)varray.o # Specify the directories to be searched for header files. # Both . and srcdir are used, in that order, *************** LIBGCC_DEPS = $(GCC_PASSES) $(LANGUAGES) *** 1034,1040 **** libgcc.a: $(LIBGCC_DEPS) $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ ! HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \ AR_FOR_TARGET="$(AR_FOR_TARGET)" \ AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ --- 1034,1040 ---- libgcc.a: $(LIBGCC_DEPS) $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ ! BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \ AR_FOR_TARGET="$(AR_FOR_TARGET)" \ AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ *************** s-mlib: $(srcdir)/genmultilib Makefile *** 1072,1078 **** # Build multiple copies of libgcc.a, one for each target switch. stmp-multilib: $(LIBGCC_DEPS) $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ ! HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \ AR_FOR_TARGET="$(AR_FOR_TARGET)" \ AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ --- 1072,1078 ---- # Build multiple copies of libgcc.a, one for each target switch. stmp-multilib: $(LIBGCC_DEPS) $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ ! BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \ AR_FOR_TARGET="$(AR_FOR_TARGET)" \ AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ *************** genpreds.o : genpreds.c $(RTL_BASE_H) $( *** 1928,1970 **** # # Compile the libraries to be used by gen*. # If we are not cross-building, gen* use the same .o's that cc1 will use, ! # and HOST_PREFIX_1 is `loser-', just to ensure these rules don't conflict # with the rules for rtl.o, etc. ! $(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(HCONFIG_H) $(SYSTEM_H) $(RTL_H) \ real.h $(GGC_H) errors.h ! rm -f $(HOST_PREFIX)rtl.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c $(OUTPUT_OPTION) ! $(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(HCONFIG_H) \ $(RTL_H) $(TREE_H) hard-reg-set.h $(BASIC_BLOCK_H) ! rm -f $(HOST_PREFIX)print-rtl.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c $(OUTPUT_OPTION) ! $(HOST_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(HCONFIG_H) $(SYSTEM_H) $(RTL_H) \ flags.h $(BASIC_BLOCK_H) $(REGS_H) ! rm -f $(HOST_PREFIX)bitmap.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/bitmap.c > $(HOST_PREFIX)bitmap.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)bitmap.c $(OUTPUT_OPTION) ! ! $(HOST_PREFIX_1)errors.o: errors.c $(HCONFIG_H) $(SYSTEM_H) errors.h ! rm -f $(HOST_PREFIX)errors.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/errors.c > $(HOST_PREFIX)errors.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)errors.c $(OUTPUT_OPTION) ! $(HOST_PREFIX_1)varray.o: varray.c $(HCONFIG_H) $(SYSTEM_H) varray.h $(RTL_H) \ $(TREE_H) bitmap.h errors.h ! rm -f $(HOST_PREFIX)varray.c sed -e 's/config[.]h/hconfig.h/' $(srcdir)/varray.c > \ ! $(HOST_PREFIX)varray.c $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \ ! $(HOST_PREFIX)varray.c $(OUTPUT_OPTION) ! $(HOST_PREFIX_1)ggc-none.o: ggc-none.c $(HCONFIG_H) $(SYSTEM_H) $(GCC_H) ! rm -f $(HOST_PREFIX)ggc-none.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/ggc-none.c > $(HOST_PREFIX)ggc-none.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)ggc-none.c $(OUTPUT_OPTION) # # Remake internationalization support. --- 1928,1970 ---- # # Compile the libraries to be used by gen*. # If we are not cross-building, gen* use the same .o's that cc1 will use, ! # and BUILD_PREFIX_1 is `loser-', just to ensure these rules don't conflict # with the rules for rtl.o, etc. ! $(BUILD_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(HCONFIG_H) $(SYSTEM_H) $(RTL_H) \ real.h $(GGC_H) errors.h ! rm -f $(BUILD_PREFIX)rtl.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(BUILD_PREFIX)rtl.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)rtl.c $(OUTPUT_OPTION) ! $(BUILD_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(HCONFIG_H) \ $(RTL_H) $(TREE_H) hard-reg-set.h $(BASIC_BLOCK_H) ! rm -f $(BUILD_PREFIX)print-rtl.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(BUILD_PREFIX)print-rtl.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)print-rtl.c $(OUTPUT_OPTION) ! $(BUILD_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(HCONFIG_H) $(SYSTEM_H) $(RTL_H) \ flags.h $(BASIC_BLOCK_H) $(REGS_H) ! rm -f $(BUILD_PREFIX)bitmap.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/bitmap.c > $(BUILD_PREFIX)bitmap.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)bitmap.c $(OUTPUT_OPTION) ! ! $(BUILD_PREFIX_1)errors.o: errors.c $(HCONFIG_H) $(SYSTEM_H) errors.h ! rm -f $(BUILD_PREFIX)errors.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/errors.c > $(BUILD_PREFIX)errors.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)errors.c $(OUTPUT_OPTION) ! $(BUILD_PREFIX_1)varray.o: varray.c $(HCONFIG_H) $(SYSTEM_H) varray.h $(RTL_H) \ $(TREE_H) bitmap.h errors.h ! rm -f $(BUILD_PREFIX)varray.c sed -e 's/config[.]h/hconfig.h/' $(srcdir)/varray.c > \ ! $(BUILD_PREFIX)varray.c $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \ ! $(BUILD_PREFIX)varray.c $(OUTPUT_OPTION) ! $(BUILD_PREFIX_1)ggc-none.o: ggc-none.c $(HCONFIG_H) $(SYSTEM_H) $(GCC_H) ! rm -f $(BUILD_PREFIX)ggc-none.c ! sed -e 's/config[.]h/hconfig.h/' $(srcdir)/ggc-none.c > $(BUILD_PREFIX)ggc-none.c ! $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)ggc-none.c $(OUTPUT_OPTION) # # Remake internationalization support. *************** mostlyclean: $(INTL_MOSTLYCLEAN) lang.mo *** 2446,2454 **** -rm -f $(STAGESTUFF) -rm -rf libgcc # Delete the temporary source copies for cross compilation. ! -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)print-rtl.c ! -rm -f $(HOST_PREFIX_1)bitmap.c $(HOST_PREFIX_1)errors.c ! -rm -f $(HOST_PREFIX_1)ggc-none.c # Delete the temp files made in the course of building libgcc.a. -rm -f xlimits.h # Delete other built files. --- 2446,2454 ---- -rm -f $(STAGESTUFF) -rm -rf libgcc # Delete the temporary source copies for cross compilation. ! -rm -f $(BUILD_PREFIX_1)rtl.c $(BUILD_PREFIX_1)print-rtl.c ! -rm -f $(BUILD_PREFIX_1)bitmap.c $(BUILD_PREFIX_1)errors.c ! -rm -f $(BUILD_PREFIX_1)ggc-none.c # Delete the temp files made in the course of building libgcc.a. -rm -f xlimits.h # Delete other built files. *************** install-libgcc: libgcc.mk libgcc.a insta *** 2754,2760 **** r_f_t=: ; \ fi; \ $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ ! HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \ AR_FOR_TARGET="$(AR_FOR_TARGET)" \ AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ --- 2754,2760 ---- r_f_t=: ; \ fi; \ $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ ! BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \ AR_FOR_TARGET="$(AR_FOR_TARGET)" \ AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ *************** install-multilib: stmp-multilib installd *** 2780,2786 **** r_f_t=: ; \ fi; \ $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ ! HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \ AR_FOR_TARGET="$(AR_FOR_TARGET)" \ AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ --- 2780,2786 ---- r_f_t=: ; \ fi; \ $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ ! BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \ AR_FOR_TARGET="$(AR_FOR_TARGET)" \ AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ Index: gcc/configure =================================================================== RCS file: /cvsroot/gcc/gcc/gcc/configure,v retrieving revision 1.607 diff -c -3 -p -r1.607 configure *** gcc/configure 27 May 2002 04:24:45 -0000 1.607 --- gcc/configure 30 May 2002 17:57:09 -0000 *************** fi *** 6797,6804 **** # FIXME. # These are the normal (build=host) settings: ! HOST_PREFIX= ! HOST_PREFIX_1=ignore- HOST_CC='$(CC)' HOST_CFLAGS='$(ALL_CFLAGS)' --- 6797,6804 ---- # FIXME. # These are the normal (build=host) settings: ! BUILD_PREFIX= ! BUILD_PREFIX_1=ignore- HOST_CC='$(CC)' HOST_CFLAGS='$(ALL_CFLAGS)' *************** STMP_FIXPROTO=stmp-fixproto *** 6808,6815 **** # And these apply if build != host. if test x$build != x$host then ! HOST_PREFIX=build- ! HOST_PREFIX_1=build- HOST_CC='$(CC_FOR_BUILD)' HOST_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD) $(XCFLAGS)' --- 6808,6815 ---- # And these apply if build != host. if test x$build != x$host then ! BUILD_PREFIX=build- ! BUILD_PREFIX_1=build- HOST_CC='$(CC_FOR_BUILD)' HOST_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD) $(XCFLAGS)' *************** s%@CROSS@%$CROSS%g *** 8543,8550 **** s%@ALL@%$ALL%g s%@SYSTEM_HEADER_DIR@%$SYSTEM_HEADER_DIR%g s%@inhibit_libc@%$inhibit_libc%g ! s%@HOST_PREFIX@%$HOST_PREFIX%g ! s%@HOST_PREFIX_1@%$HOST_PREFIX_1%g s%@HOST_CC@%$HOST_CC%g s%@HOST_CFLAGS@%$HOST_CFLAGS%g s%@STMP_FIXINC@%$STMP_FIXINC%g --- 8543,8550 ---- s%@ALL@%$ALL%g 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%@HOST_CC@%$HOST_CC%g s%@HOST_CFLAGS@%$HOST_CFLAGS%g s%@STMP_FIXINC@%$STMP_FIXINC%g Index: gcc/configure.in =================================================================== RCS file: /cvsroot/gcc/gcc/gcc/configure.in,v retrieving revision 1.594 diff -c -3 -p -r1.594 configure.in *** gcc/configure.in 27 May 2002 04:24:53 -0000 1.594 --- gcc/configure.in 30 May 2002 17:57:11 -0000 *************** AC_SUBST(inhibit_libc) *** 1146,1153 **** # FIXME. # These are the normal (build=host) settings: ! HOST_PREFIX= AC_SUBST(HOST_PREFIX) ! HOST_PREFIX_1=ignore- AC_SUBST(HOST_PREFIX_1) HOST_CC='$(CC)' AC_SUBST(HOST_CC) HOST_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(HOST_CFLAGS) --- 1146,1153 ---- # FIXME. # These are the normal (build=host) settings: ! BUILD_PREFIX= AC_SUBST(BUILD_PREFIX) ! BUILD_PREFIX_1=ignore- AC_SUBST(BUILD_PREFIX_1) HOST_CC='$(CC)' AC_SUBST(HOST_CC) HOST_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(HOST_CFLAGS) *************** STMP_FIXPROTO=stmp-fixproto AC_SUBST(STM *** 1157,1164 **** # And these apply if build != host. if test x$build != x$host then ! HOST_PREFIX=build- ! HOST_PREFIX_1=build- HOST_CC='$(CC_FOR_BUILD)' HOST_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD) $(XCFLAGS)' --- 1157,1164 ---- # And these apply if build != host. if test x$build != x$host then ! BUILD_PREFIX=build- ! BUILD_PREFIX_1=build- HOST_CC='$(CC_FOR_BUILD)' HOST_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD) $(XCFLAGS)' Index: gcc/mklibgcc.in =================================================================== RCS file: /cvsroot/gcc/gcc/gcc/mklibgcc.in,v retrieving revision 1.46 diff -c -3 -p -r1.46 mklibgcc.in *** gcc/mklibgcc.in 9 May 2002 21:09:26 -0000 1.46 --- gcc/mklibgcc.in 30 May 2002 17:57:12 -0000 *************** make_compile='$(MAKE) GCC_FOR_TARGET="$( *** 56,63 **** AR_EXTRACT_FOR_TARGET="$(AR_EXTRACT_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ CC="$(CC)" CFLAGS="$(CFLAGS)" \ ! HOST_PREFIX="$(HOST_PREFIX)" \ ! HOST_PREFIX_1="$(HOST_PREFIX_1)" \ LANGUAGES="$(LANGUAGES)"' # Dependencies for libgcc2.c --- 56,63 ---- AR_EXTRACT_FOR_TARGET="$(AR_EXTRACT_FOR_TARGET)" \ AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \ CC="$(CC)" CFLAGS="$(CFLAGS)" \ ! BUILD_PREFIX="$(BUILD_PREFIX)" \ ! BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \ LANGUAGES="$(LANGUAGES)"' # Dependencies for libgcc2.c Index: gcc/config/arc/t-arc =================================================================== RCS file: /cvsroot/gcc/gcc/gcc/config/arc/t-arc,v retrieving revision 1.4 diff -c -3 -p -r1.4 t-arc *** gcc/config/arc/t-arc 17 May 2001 03:15:46 -0000 1.4 --- gcc/config/arc/t-arc 30 May 2002 17:57:15 -0000 *************** stmp-multilib-arc: stmp-multilib *** 51,57 **** flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \ $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ CC="$(CC)" CFLAGS="$(CFLAGS)" \ ! HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \ GCC_CFLAGS="$(GCC_CFLAGS) $${flags}" \ INCLUDES="$(INCLUDES)" CRTSTUFF_T_CFLAGS=$(CRTSTUFF_T_CFLAGS) \ dir="$${dir}" x-crtinit.o x-crtfini.o; \ --- 51,57 ---- flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \ $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \ CC="$(CC)" CFLAGS="$(CFLAGS)" \ ! BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \ GCC_CFLAGS="$(GCC_CFLAGS) $${flags}" \ INCLUDES="$(INCLUDES)" CRTSTUFF_T_CFLAGS=$(CRTSTUFF_T_CFLAGS) \ dir="$${dir}" x-crtinit.o x-crtfini.o; \