]> gcc.gnu.org Git - gcc.git/commitdiff
Add -mdynamic-no-pic to compile flags for gcc. On Mac OS X and Darwin,
authorRobert Bowdidge <bowdidge@apple.com>
Tue, 17 Aug 2004 20:02:46 +0000 (13:02 -0700)
committerRobert Bowdidge <bowdidge@gcc.gnu.org>
Tue, 17 Aug 2004 20:02:46 +0000 (13:02 -0700)
the compiler generates position-independent-code by default.  This allows
an object file to be used for a dylib or executable without any thought
on the developer's part, but generates less-efficient code.  Setting this
flag on gcc speeds compiles by 3-5%.
        * config/rs6000/x-darwin: Add -mdynamic-no-pic to gcc build flags.

From-SVN: r86141

gcc/ChangeLog
gcc/config/rs6000/x-darwin

index 89b102c44458a98dee8ff265338bbaccfaff2c27..8525cace914bab76cbcd08351b13456297a17199 100644 (file)
@@ -1,3 +1,7 @@
+2004-08-17  Robert Bowdidge  <bowdidge@apple.com>
+  
+        * config/rs6000/x-darwin: Add -mdynamic-no-pic to gcc build flags.
+
 2004-08-17  Andreas Tobler  <a.tobler@schweiz.ch>
 
        * config/rs6000/darwin.md (*call_nonlocal_darwin64): Add #else clause
index f7242a7ee5b3693e2af1446cd4084c27fd476baf..0a2f52883b954a07b161e8573a040292adc43ff7 100644 (file)
@@ -1,3 +1,4 @@
+XCFLAGS = -mdynamic-no-pic
 host-darwin.o : $(srcdir)/config/rs6000/host-darwin.c $(CONFIG_H) $(SYSTEM_H) \
   coretypes.h hosthooks.h hosthooks-def.h toplev.h diagnostic.h
        $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
This page took 0.072359 seconds and 5 git commands to generate.