toolchain.eclass: disable systemtap for cross

Same rationale as 7c8f76d4af.

Closes: https://bugs.gentoo.org/722806
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2026-03-16 15:24:53 +00:00
parent 7c8f76d4af
commit 39c75c6d4b
+5 -1
View File
@@ -1803,7 +1803,11 @@ toolchain_src_configure() {
fi
if in_iuse systemtap ; then
confgcc+=( $(use_enable systemtap) )
if is_crosscompile ; then
confgcc+=( --disable-systemtap )
else
confgcc+=( $(use_enable systemtap) )
fi
fi
if in_iuse valgrind ; then