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 /config | |
parent | a79d695a28d17f9d50b71b8ee432f243a1ffea7d (diff) | |
download | gcc-be8fff8104f223a0eaa5ea36f385982d09d9731e.tar.gz |
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 'config')
-rw-r--r-- | config/mh-ppc-darwin | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/mh-ppc-darwin b/config/mh-ppc-darwin new file mode 100644 index 00000000000..44fd620b66e --- /dev/null +++ b/config/mh-ppc-darwin @@ -0,0 +1,6 @@ +# The -mdynamic-no-pic ensures that the compiler executable is built without +# position-independent-code -- the usual default on Darwin. This fix speeds +# compiles by 3-5%. + +BOOT_CFLAGS=-g -O2 -mdynamic-no-pic + |