diff options
author | H.J. Lu <hjl@gnu.org> | 2000-05-20 11:35:24 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2000-05-20 11:35:24 +0000 |
commit | b71e984578a8f6da6124018d54db2f3c20ec8885 (patch) | |
tree | 9ed99923b2974e1ea75a5346d92051e9021071e0 /gcc | |
parent | c2b63960be7f04f76bbb692993612327c4017730 (diff) | |
download | gcc-b71e984578a8f6da6124018d54db2f3c20ec8885.zip gcc-b71e984578a8f6da6124018d54db2f3c20ec8885.tar.gz gcc-b71e984578a8f6da6124018d54db2f3c20ec8885.tar.bz2 |
* Makefile.in (bootstrap): Unset LANG_LIB2FUNCS for stage 1.
From-SVN: r34046
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 72709d2..1035e56 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sat May 20 08:29:28 2000 H.J. Lu <hjl@gnu.org> + + * Makefile.in (bootstrap): Unset LANG_LIB2FUNCS for stage 1. + Sat May 20 07:27:35 2000 Alexandre Oliva <aoliva@cygnus.com> * fold-const.c (make_range): Handle degenerated intervals. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index bee8c2a..4eadf44 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2734,7 +2734,7 @@ bootstrap bootstrap-lean: force # Only build the C compiler for stage1, because that is the only one that # we can guarantee will build with the native compiler, and also it is the # only thing useful for building stage2. - $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)" + $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)" LANG_LIB2FUNCS= $(MAKE) stage1 -if test $@ = bootstrap-lean; then cd stage1 ; rm -f $(VOL_FILES); else true; fi # This used to define ALLOCA as empty, but that would lead to bad results |