From 1c395b298d2436244b9e7ef82c58364f6f2f54ed Mon Sep 17 00:00:00 2001 From: Mike Lundy Date: Fri, 1 Nov 2024 18:13:23 -0700 Subject: mold: tell cmake which compilers to use The mold build was using gcc in the PATH, instead of the shiny gcc we just built (the way the other companion libs/tools do) Signed-off-by: Mike Lundy --- scripts/build/linker/100-mold.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build/linker/100-mold.sh b/scripts/build/linker/100-mold.sh index 710ca969..c743c9c7 100644 --- a/scripts/build/linker/100-mold.sh +++ b/scripts/build/linker/100-mold.sh @@ -16,6 +16,8 @@ do_linker_mold_build() { CT_DoLog EXTRA "Configuring mold for host" CT_DoExecLog CFG \ + CC="${CT_HOST}-gcc" \ + CXX="${CT_HOST}-g++" \ CFLAGS="${CT_CFLAGS_FOR_HOST}" \ LDFLAGS="${CT_LDFLAGS_FOR_HOST}" \ cmake "${CT_SRC_DIR}/mold" \ -- cgit v1.2.3