diff options
author | William Hubbs <williamh@gentoo.org> | 2017-05-06 10:31:31 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2017-05-06 12:53:51 -0500 |
commit | 4000cdde4281ffef9b61da83f16a30547131259a (patch) | |
tree | feafad43369c439e74f270a51e9dd76e68998ea6 /eclass/toolchain.eclass | |
parent | app-editors/retext: Remove old (diff) | |
download | gentoo-4000cdde4281ffef9b61da83f16a30547131259a.tar.gz gentoo-4000cdde4281ffef9b61da83f16a30547131259a.tar.bz2 gentoo-4000cdde4281ffef9b61da83f16a30547131259a.zip |
toolchain.eclass: enable pie and ssp for gcc >= 6 for #615370
Diffstat (limited to 'eclass/toolchain.eclass')
-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 77e807af3ad0..890df65612e9 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[*]/#/+}" |