diff options
author | Sam James <sam@gentoo.org> | 2023-05-19 02:07:57 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-19 02:07:57 +0100 |
commit | 0673f2bd041bef4974b2f6b0745bae3059da0a3a (patch) | |
tree | 1a02fc1e5961f06a00058e590b42e395cc4caf01 /eclass | |
parent | toolchain.eclass: return to using -j1 for make install (diff) | |
download | gentoo-0673f2bd041bef4974b2f6b0745bae3059da0a3a.tar.gz gentoo-0673f2bd041bef4974b2f6b0745bae3059da0a3a.tar.bz2 gentoo-0673f2bd041bef4974b2f6b0745bae3059da0a3a.zip |
toolchain.eclass: add links/info about USE=rust for gcc-13
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 36369bb8d193..87da1fba73c0 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -288,6 +288,9 @@ if [[ ${PN} != kgcc64 && ${PN} != gcc-* ]] ; then tc_version_is_at_least 12.2.1_p20221203 ${PV} && IUSE+=" default-znow" tc_version_is_at_least 12.2.1_p20221203 ${PV} && IUSE+=" default-stack-clash-protection" tc_version_is_at_least 13.0.0_pre20221218 ${PV} && IUSE+=" modula2" + # See https://gcc.gnu.org/pipermail/gcc-patches/2023-April/615944.html + # and https://rust-gcc.github.io/2023/04/24/gccrs-and-gcc13-release.html for why + # it was disabled in 13. tc_version_is_at_least 14.0.0_pre20230423 ${PV} && IUSE+=" rust" fi |