diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2016-02-02 19:33:00 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2016-02-03 19:46:13 +0100 |
commit | 3df9262b096fe2284a7d91f09b7b410df0359a46 (patch) | |
tree | b9c5bc1918b0be688a0c8006236218f0d5464bab /util/crossgcc | |
parent | 5ea87ff8610b1ec8d8d2ede80a52f72f9219b2d4 (diff) |
crossgcc: Bring back the old iasl building scheme
This makes the cross{gcc,tools}-* targets build iasl again, without
building it many times for cross{gcc,tools}
Change-Id: I7546c2af5f7cce3a4f1a08f593fb5cbc675d69ad
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/13564
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/crossgcc')
-rw-r--r-- | util/crossgcc/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/crossgcc/Makefile.inc b/util/crossgcc/Makefile.inc index 1c28504e33..be0facc9d9 100644 --- a/util/crossgcc/Makefile.inc +++ b/util/crossgcc/Makefile.inc @@ -41,7 +41,7 @@ crossgcc: clean-for-update crosstools-aarch64 crosstools-mips crosstools-riscv crosstools-power8 $(foreach arch,$(TOOLCHAIN_ARCHES),crossgcc-$(arch)): clean-for-update - $(MAKE) -C util/crossgcc $(patsubst crossgcc-%,build-%,$@) SKIP_GDB=1 + $(MAKE) -C util/crossgcc $(patsubst crossgcc-%,build-%,$@) build_iasl SKIP_GDB=1 crosstools: clean-for-update $(MAKE) -C util/crossgcc all_with_gdb SKIP_CLANG=1 @@ -53,7 +53,7 @@ clang: clean-for-update $(MAKE) -C util/crossgcc build_clang $(foreach arch,$(TOOLCHAIN_ARCHES),crosstools-$(arch)): clean-for-update - $(MAKE) -C util/crossgcc $(patsubst crosstools-%,build-%,$@) + $(MAKE) -C util/crossgcc $(patsubst crosstools-%,build-%,$@) build_iasl crossgcc-clean: clean-for-update $(MAKE) -C util/crossgcc clean |