aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKelley Cook <kelleycook@wideopenwest.com>2003-08-29 17:41:49 +0000
committerR. Kelley Cook <kcook@gcc.gnu.org>2003-08-29 17:41:49 +0000
commite46f77a41451884cde50f8d7ee78d3dc3651dfd2 (patch)
treee921f2862361bd87b11241a5639c70afa893585b /gcc
parenta3aff86a545a8313013c3cb1f76c70fba59f9941 (diff)
downloadgcc-e46f77a41451884cde50f8d7ee78d3dc3651dfd2.zip
gcc-e46f77a41451884cde50f8d7ee78d3dc3651dfd2.tar.gz
gcc-e46f77a41451884cde50f8d7ee78d3dc3651dfd2.tar.bz2
Makefile.in (restage1): Pass BOOT_CFLAGS to recursive make.
2003-08-29 Kelley Cook <kelleycook@wideopenwest.com> * Makefile.in (restage1): Pass BOOT_CFLAGS to recursive make. (restage2): Likewise. (restage3): Likewise. (restage4): Likewise. (restageprofile): Likewise. (restagefeedback): Likewise. (bubblestrap): Likewise. From-SVN: r70916
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog10
-rw-r--r--gcc/Makefile.in18
2 files changed, 19 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 37f2b05..7ea1ced 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,13 @@
+2003-08-29 Kelley Cook <kelleycook@wideopenwest.com>
+
+ * Makefile.in (restage1): Pass BOOT_CFLAGS to recursive make.
+ (restage2): Likewise.
+ (restage3): Likewise.
+ (restage4): Likewise.
+ (restageprofile): Likewise.
+ (restagefeedback): Likewise.
+ (bubblestrap): Likewise.
+
2003-08-29 Nathanael Nerode <neroden@gcc.gnu.org>
* config.gcc: Narrow unsupported target match to avoid clobbering
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index e7c323f..e1438da 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -3601,19 +3601,19 @@ restage1: unstage1
$(MAKE) stage1_build
restage2: unstage2
- $(MAKE) LANGUAGES="$(LANGUAGES)" stage2_build
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage2_build
restage3: unstage3
- $(MAKE) LANGUAGES="$(LANGUAGES)" stage3_build
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage3_build
restage4: unstage4
- $(MAKE) LANGUAGES="$(LANGUAGES)" stage4_build
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage4_build
restageprofile: unstageprofile
- $(MAKE) LANGUAGES="$(LANGUAGES)" stageprofile_build
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stageprofile_build
restagefeedback: unstagefeedback
- $(MAKE) LANGUAGES="$(LANGUAGES)" stagefeedback_build
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stagefeedback_build
# Bubble up a bugfix through all the stages. Primarily useful for fixing
# bugs that cause the compiler to crash while building stage 2.
@@ -3626,14 +3626,14 @@ bubblestrap:
fi; \
fi
if test -f stage1_copy; then $(MAKE) unstage1; fi
- $(MAKE) LANGUAGES="$(LANGUAGES)" stage1_copy
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage1_copy
if test -f stage2_copy; then $(MAKE) unstage2; fi
- $(MAKE) LANGUAGES="$(LANGUAGES)" stage2_copy
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage2_copy
if test -f stage3_copy; then $(MAKE) unstage3; fi
- $(MAKE) LANGUAGES="$(LANGUAGES)" stage3_build
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage3_build
if test -f stage4_copy; then \
$(MAKE) stage3_copy; $(MAKE) unstage4; \
- $(MAKE) LANGUAGES="$(LANGUAGES)" stage4_build || exit 1; \
+ $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage4_build || exit 1; \
fi
quickstrap: