diff options
author | Sam James <sam@gentoo.org> | 2024-10-15 08:11:57 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-10-15 08:13:51 +0100 |
commit | b9bcca92c56e87436852888a7ef0f52cee7d5ee2 (patch) | |
tree | 4836ca17f77288130a7eb49d33d286c794a46c77 | |
parent | cross-pkg-config: Don't unset PKG_CONFIG_ALLOW_SYSTEM_CFLAGS/LIBS (diff) | |
download | crossdev-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>
-rwxr-xr-x | crossdev | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |