]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
mh-darwin (BOOT_CFLAGS): Only add -mdynamic-no-pic for m32 hosts.
authorIain Sandoe <iain@codesourcery.com>
Sun, 29 Sep 2013 19:16:45 +0000 (19:16 +0000)
committerIain Sandoe <iains@gcc.gnu.org>
Sun, 29 Sep 2013 19:16:45 +0000 (19:16 +0000)
config:

* mh-darwin (BOOT_CFLAGS): Only add -mdynamic-no-pic for m32 hosts.
(STAGE1_CFLAGS, STAGE1_LDFLAGS): New.
Fix over-length lines and amend comments.

From-SVN: r203017

config/ChangeLog
config/mh-darwin

index ab34cbcc224dfc6f7777b3a688771d3691056766..e3f6f456695b972cc341ad26c18e38129f1076dc 100644 (file)
@@ -1,3 +1,9 @@
+2013-09-29  Iain Sandoe  <iain@codesourcery.com>
+
+       * mh-darwin (BOOT_CFLAGS): Only add -mdynamic-no-pic for m32 hosts.
+       (STAGE1_CFLAGS, STAGE1_LDFLAGS): New.
+       Fix over-length lines and amend comments.
+
 2013-08-30  Marek Polacek  <polacek@redhat.com>
 
        * bootstrap-ubsan.mk: New.
index 19bf26568b5fba8d1b8e03a708ba830558b89a35..a039f201410987b876a2cc259e6f1ca09f8b25bc 100644 (file)
@@ -1,7 +1,18 @@
 # 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 += -mdynamic-no-pic
+BOOT_CFLAGS += \
+`case ${host} in i?86-*-darwin* | powerpc-*-darwin*) \
+                 echo -mdynamic-no-pic ;; esac;`
 
-# Ensure we don't try and use -pie, as it is incompatible with pch.
-BOOT_LDFLAGS += `case ${host} in *-*-darwin[1][1-9]*) echo -Wl,-no_pie ;; esac;`
+# ld on Darwin versions >= 10.7 defaults to PIE executables. Disable this for
+# gcc components, since it is incompatible with our pch implementation.
+BOOT_LDFLAGS += \
+`case ${host} in *-*-darwin[1][1-9]*) echo -Wl,-no_pie ;; esac;`
+
+# Similarly, for cross-compilation.
+STAGE1_CFLAGS += \
+`case ${host} in i?86-*-darwin* | powerpc-*-darwin*)\
+                 echo -mdynamic-no-pic ;; esac;`
+STAGE1_LDFLAGS += \
+`case ${host} in *-*-darwin[1][1-9]*) echo -Wl,-no_pie ;; esac;`