diff options
author | bowdidge <bowdidge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-01 03:34:59 +0000 |
---|---|---|
committer | bowdidge <bowdidge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-01 03:34:59 +0000 |
commit | 0222d9841fb086625a94a823b2001d7b90be8dfb (patch) | |
tree | 66bd14541c693c711316b388ce7509c7b0dce898 /config | |
parent | 725d87de214ae38be88532776a0958d43088a256 (diff) | |
download | gcc-0222d9841fb086625a94a823b2001d7b90be8dfb.tar.gz |
* 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
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86866 138bc75d-0d04-0410-961f-82ee72b054a4
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 + |