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@coreboot.org> Reviewed-on: https://review.coreboot.org/13923 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
committed by
Martin Roth
parent
9d5e36e839
commit
f466ea97bf
@ -10,12 +10,12 @@ DEST ?= $(CURDIR)/xgcc
|
|||||||
all all_with_gdb:
|
all all_with_gdb:
|
||||||
$(MAKE) build-i386 build-x64 build-arm build-mips \
|
$(MAKE) build-i386 build-x64 build-arm build-mips \
|
||||||
build-riscv build-aarch64 build-power8 build-nds32le \
|
build-riscv build-aarch64 build-power8 build-nds32le \
|
||||||
build_clang build_iasl
|
build_clang build_iasl build_make
|
||||||
|
|
||||||
all_without_gdb:
|
all_without_gdb:
|
||||||
$(MAKE) SKIP_GDB=1 build-i386 build-x64 build-arm build-mips \
|
$(MAKE) SKIP_GDB=1 build-i386 build-x64 build-arm build-mips \
|
||||||
build-riscv build-aarch64 build-power8 build-nds32le \
|
build-riscv build-aarch64 build-power8 build-nds32le \
|
||||||
build_clang build_iasl
|
build_clang build_iasl build_make
|
||||||
|
|
||||||
build_tools: build_gcc build_gdb
|
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)
|
bash ./buildgcc -P clang $(if $(CPUS),-j $(CPUS)) $(if $(KEEP_SOURCES),-t) $(BUILDGCC_OPTIONS) -d $(DEST)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
build_make:
|
||||||
|
bash ./buildgcc -P make $(if $(CPUS),-j $(CPUS)) $(if $(KEEP_SOURCES),-t) $(BUILDGCC_OPTIONS) -d $(DEST)
|
||||||
|
|
||||||
###########################################################
|
###########################################################
|
||||||
build-i386:
|
build-i386:
|
||||||
@$(MAKE) build_tools BUILD_PLATFORM=i386-elf
|
@$(MAKE) build_tools BUILD_PLATFORM=i386-elf
|
||||||
|
Reference in New Issue
Block a user