[PATCH] Makefile: Disable PLATFORM_LIBGCC for LLVM toolchain

Alistair Delva adelva at google.com
Mon Sep 26 22:47:47 CEST 2022


The LLVM toolchain does not have or need libgcc, so do not require
it to exist on the library path. Even if "-print-libgcc-file-name"
returned the empty string, -lgcc would be specified.

This leaves CONFIG_USE_PRIVATE_LIBGCC alone because I did not have
a target/toolchain combination available for testing.

Signed-off-by: Alistair Delva <adelva at google.com>
Cc: Simon Glass <sjg at chromium.org>
Cc: Tom Rini <trini at konsulko.com>
Cc: Nick Desaulniers <ndesaulniers at google.com>
---
 Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile b/Makefile
index 8af67ebd63..af06b7aa19 100644
--- a/Makefile
+++ b/Makefile
@@ -874,8 +874,10 @@ u-boot-main := $(libs-y)
 ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y)
 PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a
 else
+ifneq ($(cc-name),clang)
 PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(c_flags) -print-libgcc-file-name`) -lgcc
 endif
+endif
 PLATFORM_LIBS += $(PLATFORM_LIBGCC)
 
 ifdef CONFIG_CC_COVERAGE
-- 
2.30.2



More information about the U-Boot mailing list