amd64: set UBOOT_COMPILER for amd64/x86

- this is so we can build qemu-uboot-x86 on arm64
This commit is contained in:
Ricardo Pardini 2025-09-21 15:27:41 +02:00 committed by Igor
parent 58d1f715a1
commit 55695c7d85

View File

@ -33,6 +33,7 @@ if [[ "$(uname -m)" == "aarch64" ]]; then
# Allow building amd64 on aarch64, but using system toolchain only
declare -g KERNEL_COMPILER="x86_64-linux-gnu-"
declare -g SKIP_EXTERNAL_TOOLCHAINS=yes
declare -g UBOOT_COMPILER='x86_64-linux-gnu-'
fi
true # make sure to exit with 0 status; this protects against shortcircuits etc above.