framework run_host_x86_binary_logged - unset QEMU_CPU

This commit is contained in:
tabris 2026-02-11 13:07:41 -05:00 committed by tabrisnet
parent ed371f5f5a
commit d8e24d7619

View File

@ -192,7 +192,8 @@ function run_host_x86_binary_logged() {
else else
display_alert "Not using qemu for running x86 binary on $(uname -m)" "$1 (${target_bin_arch})" "debug" display_alert "Not using qemu for running x86 binary on $(uname -m)" "$1 (${target_bin_arch})" "debug"
fi fi
run_host_command_logged "${qemu_invocation[@]}" # Exit with this result code # `env -u QEMU_CPU` will unset any possible specified CPUs to emulate, as in config/sources/arm64.conf
run_host_command_logged env -u QEMU_CPU "${qemu_invocation[@]}" # Exit with this result code
} }
# Run simple and exit with it's code. Exactly the same as run_host_command_logged(). Used to have pv pipe, but that causes chaos. # Run simple and exit with it's code. Exactly the same as run_host_command_logged(). Used to have pv pipe, but that causes chaos.