diff options
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 |