[coreboot-gerrit] New patch to review for coreboot: crossgcc: Build make per default

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Sun Mar 6 11:20:19 CET 2016


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13923

-gerrit

commit 44c664fabd80ec9f3d544dbbacb5b28b49b7ef6d
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Sun Mar 6 02:18:47 2016 -0800

    crossgcc: Build make per default
    
    Build make with the rest of the toolchain, since the targets using
    a Chromium EC need make 4.x
    
    Change-Id: I7efb0c25f605f16c2d9a1e7c4b203f3bcdae671b
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 util/crossgcc/Makefile | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile
index 0831f18..917301c 100644
--- a/util/crossgcc/Makefile
+++ b/util/crossgcc/Makefile
@@ -10,12 +10,12 @@ DEST ?= $(CURDIR)/xgcc
 all all_with_gdb:
 	$(MAKE) build-i386 build-x64 build-arm build-mips \
 		build-riscv build-aarch64 build-power8 build-nds32le \
-		build_clang build_iasl
+		build_clang build_iasl build_make
 
 all_without_gdb:
 	$(MAKE) SKIP_GDB=1 build-i386 build-x64 build-arm build-mips \
 		build-riscv build-aarch64 build-power8 build-nds32le \
-		build_clang build_iasl
+		build_clang build_iasl build_make
 
 build_tools: build_gcc build_gdb
 
@@ -40,6 +40,9 @@ ifeq ($(SKIP_CLANG),)
 	bash ./buildgcc -P clang $(if $(CPUS),-j $(CPUS))  $(if $(KEEP_SOURCES),-t) $(BUILDGCC_OPTIONS) -d $(DEST)
 endif
 
+build_make:
+	bash ./buildgcc -P make $(if $(CPUS),-j $(CPUS))  $(if $(KEEP_SOURCES),-t) $(BUILDGCC_OPTIONS) -d $(DEST)
+
 ###########################################################
 build-i386:
 	@$(MAKE) build_tools BUILD_PLATFORM=i386-elf



More information about the coreboot-gerrit mailing list