commit: 5d7a0f2bd35ea01f24883bc2e21e1bda5458584e Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Sat Jul 17 23:37:58 2021 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Sat Jul 17 23:37:58 2021 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=5d7a0f2b
crossdev: disable USE=sanitize for gcc-stage2 as well Reported-by: tt_1 Bug: https://bugs.gentoo.org/799707 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org> crossdev | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crossdev b/crossdev index 57ffbb5..cde01c2 100755 --- a/crossdev +++ b/crossdev @@ -788,7 +788,10 @@ AUTOGEN_TAG="# Autogenerated and managed by crossdev" GUSE_DISABLE="-boundschecking -d -gcj -gtk -libffi -mudflap -objc -objc++ -objc-gc" # These are disabled only for stage1 gcc. Normally need libc presence. GUSE_DISABLE_STAGE_1="${GUSE_DISABLE} -fortran -go -jit -cxx -mpx -openmp -sanitize -vtv" -GUSE_DISABLE_STAGE_2="${GUSE_DISABLE}" +# These are also disabled for stage2, but could be used later if dependencies +# are installed into ${SYSROOT}: +# - sanitize needs crypt.h: #799707 +GUSE_DISABLE_STAGE_2="${GUSE_DISABLE} -sanitize" # mingw64-runtime needs a stage2 compiler to build libraries: https://bugs.gentoo.org/751295 LUSE_DISABLE="-libraries"
