From 55695c7d8510bc5ed223bd9136e166ba7c1a444b Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Sun, 21 Sep 2025 15:27:41 +0200 Subject: [PATCH] amd64: set UBOOT_COMPILER for amd64/x86 - this is so we can build qemu-uboot-x86 on arm64 --- config/sources/amd64.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/config/sources/amd64.conf b/config/sources/amd64.conf index b1d7a0a079..de31b4c0a3 100644 --- a/config/sources/amd64.conf +++ b/config/sources/amd64.conf @@ -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.