Yu-Ping Wu has submitted this change. ( https://review.coreboot.org/c/coreboot/+/86263?usp=email )
Change subject: arch/arm64: Drop DISABLE_PEDANTIC=1 for BL31 ......................................................................
arch/arm64: Drop DISABLE_PEDANTIC=1 for BL31
The upstream arm-trusted-firmware has removed the DISABLE_PEDANTIC option in Commit 79eb1aff7850 ("Remove DISABLE_PEDANTIC build option"). Therefore, drop the option for BL31.
Change-Id: Iaca07ce190c566fe79814fd8bbd8821d3ea76955 Signed-off-by: Yu-Ping Wu yupingso@chromium.org Reviewed-on: https://review.coreboot.org/c/coreboot/+/86263 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Julius Werner jwerner@chromium.org --- M src/arch/arm64/Makefile.mk 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Julius Werner: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/arch/arm64/Makefile.mk b/src/arch/arm64/Makefile.mk index f4ca29b..f54c6d2 100644 --- a/src/arch/arm64/Makefile.mk +++ b/src/arch/arm64/Makefile.mk @@ -194,7 +194,7 @@ CROSS_COMPILE="$(CROSS_COMPILE_arm64)" \ CFLAGS="$(BL31_CFLAGS)" \ LDFLAGS="$(BL31_LDFLAGS)" \ - $(MAKE) -C $(BL31_SOURCE) $(BL31_MAKEARGS) $(BL31_TARGET) DISABLE_PEDANTIC=1 + $(MAKE) -C $(BL31_SOURCE) $(BL31_MAKEARGS) $(BL31_TARGET) mv $(BL31_TARGET) $@
.PHONY: $(BL31)