Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 06 May 2017 17:55:12
Message-Id: 1494093231.4000cdde4281ffef9b61da83f16a30547131259a.williamh@gentoo
1 commit: 4000cdde4281ffef9b61da83f16a30547131259a
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 6 15:31:31 2017 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sat May 6 17:53:51 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4000cdde
7
8 toolchain.eclass: enable pie and ssp for gcc >= 6 for #615370
9
10 eclass/toolchain.eclass | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
14 index 77e807af3ad..890df65612e 100644
15 --- a/eclass/toolchain.eclass
16 +++ b/eclass/toolchain.eclass
17 @@ -153,7 +153,7 @@ if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then
18 tc_version_is_at_least 4.8 && IUSE+=" graphite" IUSE_DEF+=( sanitize )
19 tc_version_is_at_least 4.9 && IUSE+=" cilk +vtv"
20 tc_version_is_at_least 5.0 && IUSE+=" jit mpx"
21 - tc_version_is_at_least 6.0 && IUSE+=" pie ssp +pch"
22 + tc_version_is_at_least 6.0 && IUSE+=" +pie +ssp +pch"
23 fi
24
25 IUSE+=" ${IUSE_DEF[*]/#/+}"