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 Aug 2019 22:56:22
Message-Id: 1566082567.908c4163cd990303aa7ffc2241f058eefffe91ff.slyfox@gentoo
1 commit: 908c4163cd990303aa7ffc2241f058eefffe91ff
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 17 22:52:48 2019 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 17 22:56:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=908c4163
7
8 toolchain.eclass: obey user's USE=cxx option, bug #692126
9
10 USE=cxx presence on typical systems is maintained by
11 profiles/base/package.use.force entry. Let's drop
12 silent override from the eclass.
13
14 Reported-by: Agostino Sarubbo
15 Bug: https://bugs.gentoo.org/692126
16 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
17
18 eclass/toolchain.eclass | 1 -
19 1 file changed, 1 deletion(-)
20
21 diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
22 index 40d46ed0707..d7f6f199365 100644
23 --- a/eclass/toolchain.eclass
24 +++ b/eclass/toolchain.eclass
25 @@ -2373,7 +2373,6 @@ is_ada() {
26
27 is_cxx() {
28 gcc-lang-supported 'c++' || return 1
29 - ! is_crosscompile && tc_version_is_at_least 4.8 && return 0
30 use_if_iuse cxx
31 }