diff options
author | Robert Bowdidge <bowdidge@apple.com> | 2004-08-31 20:34:59 -0700 |
---|---|---|
committer | Robert Bowdidge <bowdidge@gcc.gnu.org> | 2004-08-31 20:34:59 -0700 |
commit | be8fff8104f223a0eaa5ea36f385982d09d9731e (patch) | |
tree | 66bd14541c693c711316b388ce7509c7b0dce898 /Makefile.in | |
parent | a79d695a28d17f9d50b71b8ee432f243a1ffea7d (diff) | |
download | gcc-be8fff8104f223a0eaa5ea36f385982d09d9731e.zip gcc-be8fff8104f223a0eaa5ea36f385982d09d9731e.tar.gz gcc-be8fff8104f223a0eaa5ea36f385982d09d9731e.tar.bz2 |
Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
* Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
* configure.in: add test for powerpc-*-darwin* to specify makefile frag
* configure: regenerate
* config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
-mdynamic-no-pic
From-SVN: r86866
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 468d8b0..d875861 100644 --- a/Makefile.in +++ b/Makefile.in @@ -486,6 +486,11 @@ sorry: @echo Please reconfigure without --enable-bootstrap @endif gcc-bootstrap +# Flags to pass to stage2 and later makes. -- define here so fragments can +# override them. +BOOT_CFLAGS= -g -O2 + + # The first rule in the file had better be this one. Don't put any above it. # This lives here to allow makefile fragments to contain dependencies. @default_target@: @@ -28203,7 +28208,6 @@ STAGE1_LANGUAGES=@stage1_languages@ objext = .o # Flags to pass to stage2 and later makes. -BOOT_CFLAGS= -g -O2 POSTSTAGE1_FLAGS_TO_PASS = \ CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" \ STAGE_PREFIX=$$r/stage-gcc/ \ |