commit: 0144c5895bbf7a204f0077904a388b8e78931054
Author: Matthias Maier <tamiko <AT> 43-1 <DOT> org>
AuthorDate: Sat May 6 18:41:28 2017 +0000
Commit: Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Sat May 6 18:41:28 2017 +0000
URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=0144c589
toolchain.eclass: enable pie and ssp for gcc >= 6 for #615370
Take over upstream commit
commit 4000cdde4281ffef9b61da83f16a30547131259a
Author: William Hubbs <williamh <AT> gentoo.org>
Date: Sat May 6 10:31:31 2017 -0500
toolchain.eclass: enable pie and ssp for gcc >= 6 for #615370
eclass/toolchain.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 191cfad..f42e58e 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -153,7 +153,7 @@ if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then
tc_version_is_at_least 4.8 && IUSE+=" graphite" IUSE_DEF+=( sanitize )
tc_version_is_at_least 4.9 && IUSE+=" cilk +vtv"
tc_version_is_at_least 5.0 && IUSE+=" jit mpx"
- tc_version_is_at_least 6.0 && IUSE+=" pie ssp +pch"
+ tc_version_is_at_least 6.0 && IUSE+=" +pie +ssp +pch"
fi
IUSE+=" ${IUSE_DEF[*]/#/+}"