Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 17 Jul 2021 10:25:33
Message-Id: 1626517525.b03b77d2ccbf2a5b25846df3a845508d02e7b4af.slyfox@gentoo
1 commit: b03b77d2ccbf2a5b25846df3a845508d02e7b4af
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 17 09:20:51 2021 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 10:25:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b03b77d2
7
8 toolchain.eclass: drop no-op IUSE=altivec flag
9
10 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
11
12 eclass/toolchain.eclass | 6 ------
13 1 file changed, 6 deletions(-)
14
15 diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
16 index fca996f8244..a94c2d3e837 100644
17 --- a/eclass/toolchain.eclass
18 +++ b/eclass/toolchain.eclass
19 @@ -143,12 +143,6 @@ tc_has_feature() {
20 }
21
22 if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then
23 - # --enable-altivec was dropped before gcc-4. We don't set it.
24 - # We drop USE=altivec for newer gccs only to avoid rebuilds
25 - # for most stable users. Once gcc-10 is stable we can drop it.
26 - if ! tc_version_is_at_least 10; then
27 - IUSE+=" altivec"
28 - fi
29 IUSE+=" debug +cxx +nptl" TC_FEATURES+=(nptl)
30 [[ -n ${PIE_VER} ]] && IUSE+=" nopie"
31 [[ -n ${SPECS_VER} ]] && IUSE+=" nossp"