Gentoo Archives: gentoo-commits

From: Aric Belsito <lluixhi@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/musl:master commit in: eclass/
Date: Sat, 06 May 2017 21:30:13
Message-Id: 1494096088.0144c5895bbf7a204f0077904a388b8e78931054.lluixhi@gentoo
1 commit: 0144c5895bbf7a204f0077904a388b8e78931054
2 Author: Matthias Maier <tamiko <AT> 43-1 <DOT> org>
3 AuthorDate: Sat May 6 18:41:28 2017 +0000
4 Commit: Aric Belsito <lluixhi <AT> gmail <DOT> com>
5 CommitDate: Sat May 6 18:41:28 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=0144c589
7
8 toolchain.eclass: enable pie and ssp for gcc >= 6 for #615370
9
10 Take over upstream commit
11
12 commit 4000cdde4281ffef9b61da83f16a30547131259a
13 Author: William Hubbs <williamh <AT> gentoo.org>
14 Date: Sat May 6 10:31:31 2017 -0500
15
16 toolchain.eclass: enable pie and ssp for gcc >= 6 for #615370
17
18 eclass/toolchain.eclass | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21 diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
22 index 191cfad..f42e58e 100644
23 --- a/eclass/toolchain.eclass
24 +++ b/eclass/toolchain.eclass
25 @@ -153,7 +153,7 @@ if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then
26 tc_version_is_at_least 4.8 && IUSE+=" graphite" IUSE_DEF+=( sanitize )
27 tc_version_is_at_least 4.9 && IUSE+=" cilk +vtv"
28 tc_version_is_at_least 5.0 && IUSE+=" jit mpx"
29 - tc_version_is_at_least 6.0 && IUSE+=" pie ssp +pch"
30 + tc_version_is_at_least 6.0 && IUSE+=" +pie +ssp +pch"
31 fi
32
33 IUSE+=" ${IUSE_DEF[*]/#/+}"