From: Paolo Bonzini Date: Thu, 15 Jun 2006 06:25:23 +0000 (+0000) Subject: 2006-06-15 Paolo Bonzini X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=caee866aace2a8f24c64b03cdfaa8b0eaf6fba1d;p=deliverable%2Fbinutils-gdb.git 2006-06-15 Paolo Bonzini * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS too. * Makefile.in: Regenerate. --- diff --git a/ChangeLog b/ChangeLog index 70a0978d91..661380ac4d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-06-15 Paolo Bonzini + + * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS + too. + * Makefile.in: Regenerate. + 2006-06-13 John David Anglin Sync from gcc: @@ -77,6 +83,7 @@ * config-ml.in: Alter CCASFLAGS to include special multilib options the same as is done for CFLAGS. +>>>>>>> 1.659 2006-05-31 Daniel Jacobowitz * Makefile.def: Added dependencies from sim and gdb on intl, and diff --git a/Makefile.in b/Makefile.in index 2cbfbdb912..432f03dd16 100644 --- a/Makefile.in +++ b/Makefile.in @@ -177,7 +177,9 @@ POSTSTAGE1_HOST_EXPORTS = \ CC_FOR_BUILD="$(STAGE_CC_WRAPPER) \ $$r/$(HOST_SUBDIR)/prev-gcc/xgcc$(exeext) \ -B$$r/$(HOST_SUBDIR)/prev-gcc/ \ - -B$(build_tooldir)/bin/"; export CC_FOR_BUILD; + -B$(build_tooldir)/bin/"; export CC_FOR_BUILD; \ + CFLAGS="$(BOOT_CFLAGS)"; export CFLAGS; \ + LDFLAGS="$(BOOT_LDFLAGS)"; export LDFLAGS; # Target libraries are put under this directory: TARGET_SUBDIR = @target_subdir@ diff --git a/Makefile.tpl b/Makefile.tpl index 8f1a7bc6d3..f5ab350bad 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -180,7 +180,9 @@ POSTSTAGE1_HOST_EXPORTS = \ CC_FOR_BUILD="$(STAGE_CC_WRAPPER) \ $$r/$(HOST_SUBDIR)/prev-gcc/xgcc$(exeext) \ -B$$r/$(HOST_SUBDIR)/prev-gcc/ \ - -B$(build_tooldir)/bin/"; export CC_FOR_BUILD; + -B$(build_tooldir)/bin/"; export CC_FOR_BUILD; \ + CFLAGS="$(BOOT_CFLAGS)"; export CFLAGS; \ + LDFLAGS="$(BOOT_LDFLAGS)"; export LDFLAGS; # Target libraries are put under this directory: TARGET_SUBDIR = @target_subdir@