diff options
author | Sam James <sam@gentoo.org> | 2024-01-12 11:43:50 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-12 11:45:48 +0000 |
commit | fc81391f87922d64756975a60741a97d15cab966 (patch) | |
tree | e2bcdd8819baad94a86f0499f40ca4de56ae640b /eclass | |
parent | sys-devel/gcc: drop USE=mpx (diff) | |
download | gentoo-fc81391f87922d64756975a60741a97d15cab966.tar.gz gentoo-fc81391f87922d64756975a60741a97d15cab966.tar.bz2 gentoo-fc81391f87922d64756975a60741a97d15cab966.zip |
toolchain.eclass: don't enable PCH by default in IUSE (but effective noop)
It's already masked in use.mask, even. PCH has been proven to be unreliable.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to '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 8b7b730d6b9a..b1f4ea9caf68 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -253,7 +253,7 @@ if [[ ${PN} != kgcc64 && ${PN} != gcc-* ]] ; then IUSE+=" ada" IUSE+=" vtv" IUSE+=" jit" - IUSE+=" +pie +ssp +pch" + IUSE+=" +pie +ssp pch" IUSE+=" systemtap" TC_FEATURES+=( systemtap ) |