diff options
author | Jim Wilson <wilson@tuliptree.org> | 1993-01-14 01:07:41 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 1993-01-14 01:07:41 +0000 |
commit | 31883f012edd3136e402c13a5a14971cde5cb31f (patch) | |
tree | 98371089a987618b652bc1c77cf886322dd2c7bf | |
parent | 9f73dd6a47b841e23829cdb16a932485a0b0c574 (diff) | |
download | ppe42-binutils-31883f012edd3136e402c13a5a14971cde5cb31f.tar.gz ppe42-binutils-31883f012edd3136e402c13a5a14971cde5cb31f.zip |
Rename uninstalled gcc driver from gcc to xgcc.
-rw-r--r-- | ChangeLog | 25 | ||||
-rw-r--r-- | Makefile.in | 6 |
2 files changed, 28 insertions, 3 deletions
@@ -1,3 +1,28 @@ +Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com) + + * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc. + +Thu Jan 7 12:50:16 1993 Mike Werner (mtw@rtl.cygnus.com) + + * ChangeLog: Corrected errors in the following ChangeLog entry: + Wed Jan 6 20:29:16 1993 Mike Werner + +Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com) + + * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now + set exclusively by configure, using configure.in . + **** start-sanitize-chill **** + * configure.in: Changed the method by which SUBDIRS is set, in order + to properly handle the addition of chill related subdirectories + to the SUBDIRS list. + **** end-sanitize-chill **** + +Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) + + * test-build.mk: set $PATH for all builds + + * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm + Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com) * Makefile.in (GCC_FOR_TARGET): Supply a default that matches diff --git a/Makefile.in b/Makefile.in index 8e511fe926..30c9af9a2f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -56,7 +56,7 @@ CC = cc CFLAGS = -g CXX = gcc CXXFLAGS = -g -O -GCC_FOR_TARGET = ./gcc -B./ +GCC_FOR_TARGET = ./xgcc -B./ RANLIB = ranlib NM = nm @@ -89,7 +89,7 @@ INSTALL_TARGET = install.all CC_FOR_TARGET = ` \ if [ -f $${rootme}/gcc/Makefile ] ; then \ - echo $${rootme}/gcc/gcc -B$${rootme}/gcc/; \ + echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ echo $(CC); \ @@ -100,7 +100,7 @@ CC_FOR_TARGET = ` \ CXX_FOR_TARGET = ` \ if [ -f $${rootme}/gcc/Makefile ] ; then \ - echo $${rootme}/gcc/gcc -B$${rootme}/gcc/; \ + echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ echo $(CXX); \ |