Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/glibc/files/eblits: common.eblit
Date: Sat, 30 May 2015 05:28:46
Message-Id: 20150530052841.6F7C9A17@oystercatcher.gentoo.org
1 vapier 15/05/30 05:28:41
2
3 Modified: common.eblit
4 Log:
5 Filter out -Wl,--hash-style=gnu for mips targets.
6
7 Revision Changes Path
8 1.47 sys-libs/glibc/files/eblits/common.eblit
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?rev=1.47&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?rev=1.47&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?r1=1.46&r2=1.47
13
14 Index: common.eblit
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v
17 retrieving revision 1.46
18 retrieving revision 1.47
19 diff -u -r1.46 -r1.47
20 --- common.eblit 30 May 2015 04:30:58 -0000 1.46
21 +++ common.eblit 30 May 2015 05:28:41 -0000 1.47
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2015 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 1.46 2015/05/30 04:30:58 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 1.47 2015/05/30 05:28:41 vapier Exp $
27
28 alt_prefix() {
29 is_crosscompile && echo /usr/${CTARGET}
30 @@ -91,6 +91,10 @@
31 einfo "Auto adding -march=${t} to CFLAGS_x86 #185404"
32 fi
33 ;;
34 + mips)
35 + # The mips abi cannot support the GNU style hashes. #233233
36 + filter-ldflags -Wl,--hash-style=gnu -Wl,--hash-style=both
37 + ;;
38 ppc)
39 append-flags "-freorder-blocks"
40 ;;