Arthur Heymans has submitted this change. ( https://review.coreboot.org/c/coreboot/+/84010?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: libpayload: Don't force GCC in Makefile.payload ......................................................................
libpayload: Don't force GCC in Makefile.payload
This allows nvramcui to be build with clang.
Change-Id: I5e56ead81fc92b7ba4fb63a2c098b0e10b01ca53 Signed-off-by: Arthur Heymans arthur@aheymans.xyz Reviewed-on: https://review.coreboot.org/c/coreboot/+/84010 Reviewed-by: Nico Huber nico.h@gmx.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M payloads/libpayload/Makefile.payload 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Nico Huber: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/payloads/libpayload/Makefile.payload b/payloads/libpayload/Makefile.payload index fa98d8a4..9366987 100644 --- a/payloads/libpayload/Makefile.payload +++ b/payloads/libpayload/Makefile.payload @@ -79,7 +79,7 @@ endif
# `lpgcc` in in-tree mode: -LPGCC = CC="$(CCACHE) $(GCC_CC_$(ARCH))" +LPGCC = CC="$(CCACHE) $(CC_$(ARCH))" LPGCC += _OBJ="$(LIBPAYLOAD_OBJ)" LPGCC += $(LIBPAYLOAD_SRC)/bin/lpgcc