Makefile: Add toolchain version check
This is an initial check for the coreboot toolchain versions. It currently checks binutils, gcc, clang, and iasl. The other components are slightly more difficult to test, but should follow on shortly. If the toolchain is not the correct version, make will halt with an error. Change-Id: I41daf6c4545c01dc21231d78fd081bbcf77c4726 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/12846 Reviewed-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Tested-by: build bot (Jenkins)
This commit is contained in:
@@ -488,6 +488,7 @@ help_toolchain help::
|
||||
@echo ' crossgcc-clean - Remove all built coreboot cross-compilers'
|
||||
@echo ' iasl - Build coreboot IASL compiler (built by all cross targets)'
|
||||
@echo ' clang - Build coreboot clang compiler'
|
||||
@echo ' test-toolchain - Reports if toolchain components are out of date'
|
||||
@echo ' crossgcc-ARCH - Build cross-compiler for specific architecture'
|
||||
@echo ' crosstools-ARCH - Build cross-compiler with GDB for specific architecture'
|
||||
@echo ' ARCH can be "i386", "x64", "arm", "aarch64", "mips", "riscv", or "power8"'
|
||||
@@ -561,6 +562,14 @@ crossgcc-clean: clean-for-update
|
||||
|
||||
tools: $(objutil)/kconfig/conf $(CBFSTOOL) $(FMAPTOOL) $(RMODTOOL) $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE) $(AMDFWTOOL)
|
||||
|
||||
test-toolchain:
|
||||
ifeq ($(COMPILER_OUT_OF_DATE),1)
|
||||
echo "The coreboot toolchain is not the current version."
|
||||
$(error )
|
||||
else
|
||||
echo "The coreboot toolchain is the current version."
|
||||
endif # ifeq ($(COMPILER_OUT_OF_DATE),1)
|
||||
|
||||
###########################################################################
|
||||
# Common recipes for all stages
|
||||
###########################################################################
|
||||
|
Reference in New Issue
Block a user