summaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authoriains <iains@138bc75d-0d04-0410-961f-82ee72b054a4>2015-04-10 06:43:52 +0000
committeriains <iains@138bc75d-0d04-0410-961f-82ee72b054a4>2015-04-10 06:43:52 +0000
commitfb5ccd6d2aabbec414293d432363c8b74adf151a (patch)
tree7b815277dd56cf4c4aa0686897089fe68d9e2937 /libiberty
parent9707d4b3c22d56173c716d614a91b5c9489b0912 (diff)
downloadgcc-fb5ccd6d2aabbec414293d432363c8b74adf151a.tar.gz
PR target/65351
config/ * mh-darwin: Only apply -mdynamic-no-pic for m32 Darwin when the compiler in use supports -mno-dynamic-no-pic. * picflag.m4: Only append -mno-dynamic-no-pic for Darwin when -mdynamic-no-pic is present in CFLAGS. libiberty/ * configure: Regenerate. libada/ * configure: Regenerate. libgcc/ * configure: Regenerate. gcc/ * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@221967 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog6
-rwxr-xr-xlibiberty/configure14
2 files changed, 15 insertions, 5 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index b71f4922962..bdf5a0487c1 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,9 @@
+2015-04-10 Jakub Jelinek <jakub@redhat.com>
+ Iain Sandoe <iain@codesourcery.com>
+
+ PR target/65351
+ * configure: Regenerate.
+
2015-04-07 Jakub Jelinek <jakub@redhat.com>
Iain Sandoe <iain@codesourcery.com>
diff --git a/libiberty/configure b/libiberty/configure
index eaed56e3e1b..b06cab24efa 100755
--- a/libiberty/configure
+++ b/libiberty/configure
@@ -4885,11 +4885,15 @@ fi
case "${host}" in
# PIC is the default on some targets or must not be used.
*-*-darwin*)
- # PIC is the default on this platform
- # Common symbols not allowed in MH_DYLIB files
- # Cancel any earlier -mdynamic-no-pic, as that makes
- # the code not suitable for shared libraries.
- PICFLAG='-fno-common -mno-dynamic-no-pic'
+ # For darwin, common symbols are not allowed in MH_DYLIB files
+ case "${CFLAGS}" in
+ # If we are using a compiler supporting mdynamic-no-pic
+ # and the option has been tested as safe to add, then cancel
+ # it here, since the code generated is incompatible with shared
+ # libs.
+ *-mdynamic-no-pic*) PICFLAG='-fno-common -mno-dynamic-no-pic' ;;
+ *) PICFLAG=-fno-common ;;
+ esac
;;
alpha*-dec-osf5*)
# PIC is the default.