aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-10-15 08:11:57 +0100
committerSam James <sam@gentoo.org>2024-10-15 08:13:51 +0100
commitb9bcca92c56e87436852888a7ef0f52cee7d5ee2 (patch)
tree4836ca17f77288130a7eb49d33d286c794a46c77 /crossdev
parentcross-pkg-config: Don't unset PKG_CONFIG_ALLOW_SYSTEM_CFLAGS/LIBS (diff)
downloadcrossdev-b9bcca92c56e87436852888a7ef0f52cee7d5ee2.tar.gz
crossdev-b9bcca92c56e87436852888a7ef0f52cee7d5ee2.tar.bz2
crossdev-b9bcca92c56e87436852888a7ef0f52cee7d5ee2.zip
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 <sam@gentoo.org>
Diffstat (limited to 'crossdev')
-rwxr-xr-xcrossdev4
1 files 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