From ae32671f6e3de1fc3f459e258495cbc4e01820ba Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 1 Dec 2019 11:23:05 +0000 Subject: [PATCH] toolchain.eclass: drop USE=graphite support for --- eclass/toolchain.eclass | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 5ec86ca126cb..8929a1869fc6 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -164,11 +164,16 @@ if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then tc_version_is_at_least 4.2 && IUSE+=" +openmp" tc_version_is_at_least 4.3 && IUSE+=" fixed-point" tc_version_is_at_least 4.7 && IUSE+=" go" - # Note: while <=gcc-4.7 also supported graphite, it required forked ppl - # versions which we dropped. Since graphite was also experimental in - # the older versions, we don't want to bother supporting it. #448024 tc_version_is_at_least 4.8 && - IUSE+=" graphite +sanitize" TC_FEATURES+=(graphite) + IUSE+=" +sanitize" + # Note: + #