diff options
author | Sam James <sam@gentoo.org> | 2024-01-12 11:02:14 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-12 11:04:36 +0000 |
commit | 36e43f119894be5631b564e41ade681547784630 (patch) | |
tree | 52702a5088406be6727d8f73111525cc5be2aa73 /eclass/toolchain.eclass | |
parent | app-arch/unar: check ObjC toolchain support (diff) | |
download | gentoo-36e43f119894be5631b564e41ade681547784630.tar.gz gentoo-36e43f119894be5631b564e41ade681547784630.tar.bz2 gentoo-36e43f119894be5631b564e41ade681547784630.zip |
toolchain.eclass: drop noop USE=nptl
This doesn't make sense to toggle nowadays anyway given linuxthreads is long
gone, but it's not even wired up to do anything in the eclass.
The last remaining consumer was for uclibc which was dropped in
4d33143e5b807af00d29ec59d9512ac05ab0e131.
Bug: https://bugs.gentoo.org/642932
Bug: https://bugs.gentoo.org/820905
Signed-off-by: Sam James <sam@gentoo.org>
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 3601737979d8..898ed538e6f8 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -231,7 +231,7 @@ tc_has_feature() { } if [[ ${PN} != kgcc64 && ${PN} != gcc-* ]] ; then - IUSE+=" debug +cxx +nptl" TC_FEATURES+=( nptl ) + IUSE+=" debug +cxx" IUSE+=" +fortran" TC_FEATURES+=( fortran ) IUSE+=" doc hardened multilib objc" IUSE+=" pgo" |