From b9bcca92c56e87436852888a7ef0f52cee7d5ee2 Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 15 Oct 2024 08:11:57 +0100 Subject: crossdev: tweak GUSE_DISABLE* USE=boundschecking, USE=gcj, USE=gtk, USE=libffi, USE=mudflap are all long gone, so drop those from GUSE_DISABLE. USE=mpx is also gone, so remove that from GUSE_DISABLE_STAGE_1. Shift USE=vtv from GUSE_DISABLE_STAGE_1 -> GUSE_DISABLE as it falls under everything described in that comment ;) Signed-off-by: Sam James --- crossdev | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crossdev b/crossdev index a02016a..1b53fd2 100755 --- a/crossdev +++ b/crossdev @@ -884,9 +884,9 @@ CROSSDEV_OVERLAY_CREATE_REPOS_CONF="" AUTOGEN_TAG="# Autogenerated and managed by crossdev" # These flags are always disabled for cross-gcc; either usually/always broken, or # not tested, or doesn't make sense, or no one simply cares about them -GUSE_DISABLE="-boundschecking -d -gcj -gtk -libffi -mudflap -objc -objc++ -objc-gc" +GUSE_DISABLE="-d -objc -objc++ -objc-gc -vtv" # 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_1="${GUSE_DISABLE} -fortran -go -jit -cxx -openmp -sanitize" # These are also disabled for stage2, but could be used later if dependencies # are installed into ${SYSROOT}: # - sanitize needs crypt.h: #799707 -- cgit v1.2.3-65-gdbad