diff options
author | Matthias Maier <tamiko@43-1.org> | 2017-05-06 13:41:28 -0500 |
---|---|---|
committer | Matthias Maier <tamiko@43-1.org> | 2017-05-06 13:41:28 -0500 |
commit | 0144c5895bbf7a204f0077904a388b8e78931054 (patch) | |
tree | b672d04b93df0ac37c7c4d873a83dbd100ee7506 | |
parent | app-office/libreoffice: fix manifest (diff) | |
download | musl-0144c589.tar.gz musl-0144c589.tar.bz2 musl-0144c589.zip |
toolchain.eclass: enable pie and ssp for gcc >= 6 for #615370
Take over upstream commit
commit 4000cdde4281ffef9b61da83f16a30547131259a
Author: William Hubbs <williamh@gentoo.org>
Date: Sat May 6 10:31:31 2017 -0500
toolchain.eclass: enable pie and ssp for gcc >= 6 for #615370
-rw-r--r-- | eclass/toolchain.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 191cfad3..f42e58ed 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[*]/#/+}" |