diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-05-30 05:28:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-05-30 05:28:41 +0000 |
commit | 48a175500acee1f563adc17e7d06558d9c2fa036 (patch) | |
tree | a8d4903edbbe7675f8ca297b9ca61a0d3fa05c66 /sys-libs | |
parent | Add ruby22. (diff) | |
download | historical-48a175500acee1f563adc17e7d06558d9c2fa036.tar.gz historical-48a175500acee1f563adc17e7d06558d9c2fa036.tar.bz2 historical-48a175500acee1f563adc17e7d06558d9c2fa036.zip |
Filter out -Wl,--hash-style=gnu for mips targets.
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/glibc/ChangeLog | 5 | ||||
-rw-r--r-- | sys-libs/glibc/files/eblits/common.eblit | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog index 025a34a69890..1e57c986b181 100644 --- a/sys-libs/glibc/ChangeLog +++ b/sys-libs/glibc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/glibc # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.1055 2015/05/30 04:30:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.1056 2015/05/30 05:28:41 vapier Exp $ + + 30 May 2015; Mike Frysinger <vapier@gentoo.org> files/eblits/common.eblit: + Filter out -Wl,--hash-style=gnu for mips targets. 30 May 2015; Mike Frysinger <vapier@gentoo.org> files/eblits/common.eblit: Fix -march setting when building x86 multilib on x86_64 #528708 by devsk. Also diff --git a/sys-libs/glibc/files/eblits/common.eblit b/sys-libs/glibc/files/eblits/common.eblit index 1dab165ccd07..cd89cdf1c330 100644 --- a/sys-libs/glibc/files/eblits/common.eblit +++ b/sys-libs/glibc/files/eblits/common.eblit @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 1.46 2015/05/30 04:30:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 1.47 2015/05/30 05:28:41 vapier Exp $ alt_prefix() { is_crosscompile && echo /usr/${CTARGET} @@ -91,6 +91,10 @@ setup_target_flags() { einfo "Auto adding -march=${t} to CFLAGS_x86 #185404" fi ;; + mips) + # The mips abi cannot support the GNU style hashes. #233233 + filter-ldflags -Wl,--hash-style=gnu -Wl,--hash-style=both + ;; ppc) append-flags "-freorder-blocks" ;; |