summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2021-07-17 10:20:51 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2021-07-17 11:25:25 +0100
commitb03b77d2ccbf2a5b25846df3a845508d02e7b4af (patch)
tree7221a15e7e3e767cfef41bc03d7aa9866cd9230e /eclass/toolchain.eclass
parentsys-devel/gcc: update live ebuild to use EAPI=8 (diff)
downloadgentoo-b03b77d2ccbf2a5b25846df3a845508d02e7b4af.tar.gz
gentoo-b03b77d2ccbf2a5b25846df3a845508d02e7b4af.tar.bz2
gentoo-b03b77d2ccbf2a5b25846df3a845508d02e7b4af.zip
toolchain.eclass: drop no-op IUSE=altivec flag
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r--eclass/toolchain.eclass6
1 files changed, 0 insertions, 6 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index fca996f82443..a94c2d3e8375 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -143,12 +143,6 @@ tc_has_feature() {
}
if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then
- # --enable-altivec was dropped before gcc-4. We don't set it.
- # We drop USE=altivec for newer gccs only to avoid rebuilds
- # for most stable users. Once gcc-10 is stable we can drop it.
- if ! tc_version_is_at_least 10; then
- IUSE+=" altivec"
- fi
IUSE+=" debug +cxx +nptl" TC_FEATURES+=(nptl)
[[ -n ${PIE_VER} ]] && IUSE+=" nopie"
[[ -n ${SPECS_VER} ]] && IUSE+=" nossp"