diff options
author | Kelley Cook <kelleycook@wideopenwest.com> | 2003-08-12 01:14:58 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2003-08-12 01:14:58 +0000 |
commit | 727793cb909b506c50b60bb7b05874a22041fc4d (patch) | |
tree | 00aff61fea792b4cd8aa11429fea6cede1fd450c /gcc | |
parent | ee0a0f7be1d887f2872c5ee834b2c0d59cc6b0bc (diff) | |
download | gcc-727793cb909b506c50b60bb7b05874a22041fc4d.zip gcc-727793cb909b506c50b60bb7b05874a22041fc4d.tar.gz gcc-727793cb909b506c50b60bb7b05874a22041fc4d.tar.bz2 |
Makefile.in (cleanstrap): Pass BOOT_CFLAGS to bootstrap.
* Makefile.in (cleanstrap): Pass BOOT_CFLAGS to bootstrap.
(restrap): Likewise.
From-SVN: r70345
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f26963e..5d26af9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-08-11 Kelley Cook <kelleycook@wideopenwest.com> + + * Makefile.in (cleanstrap): Pass BOOT_CFLAGS to bootstrap. + (restrap): Likewise. + 2003-08-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * gcse.c (gmalloc): Argument is a size_t. Add ATTRIBUTE_MALLOC. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 753e42b..668d403 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3679,7 +3679,7 @@ quickstrap: cleanstrap: -$(MAKE) clean - $(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" bootstrap unstrap: -rm -rf stage[234]* @@ -3690,7 +3690,7 @@ unstrap: # not from scratch. restrap: $(MAKE) unstrap - $(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" bootstrap # Compare the object files in the current directory with those in the # stage2 directory. |