summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2003-08-12 01:14:58 +0000
committerkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2003-08-12 01:14:58 +0000
commit340cf541a9988cb061ba22be3c1ac731b145b0c6 (patch)
tree00aff61fea792b4cd8aa11429fea6cede1fd450c
parent6aa464afed3f07980d6bc298a12a99d099df569a (diff)
downloadgcc-340cf541a9988cb061ba22be3c1ac731b145b0c6.tar.gz
* Makefile.in (cleanstrap): Pass BOOT_CFLAGS to bootstrap.
(restrap): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70345 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f26963e179b..5d26af9ea7b 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 753e42bf2de..668d403f903 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.