[coreboot-gerrit] New patch to review for coreboot: Makefile.inc: make sure .xcompile is removed when building tools

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Sun Nov 29 19:29:11 CET 2015


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12571

-gerrit

commit eef1786617442a0b89c38b6ab3c496aac5ec6f38
Author: Martin Roth <martinroth at google.com>
Date:   Sun Nov 29 11:28:26 2015 -0700

    Makefile.inc: make sure .xcompile is removed when building tools
    
    Most of the toolchain build targets already ran clean-for-update, but
    there were a few that didn't.  Add the clean to those targets.
    
    Change-Id: I7faad32ac8bb1815e0c58e7d142ca2dbfc877896
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 Makefile.inc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile.inc b/Makefile.inc
index a1c882b..5540f73 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -462,7 +462,7 @@ help::
 # For the toolchain builds, use CPUS=x to use multiple processors to build
 # use BUILDGCC_OPTIONS= to set any crossgcc command line options
 # Example: BUILDGCC_OPTIONS='-t' will keep temporary files after build
-crossgcc:
+crossgcc: clean-for-update
 	$(MAKE) -C util/crossgcc all_without_gdb SKIP_CLANG=1
 
 .PHONY: crossgcc crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 \
@@ -488,13 +488,13 @@ crossgcc-mips: clean-for-update
 crossgcc-riscv: clean-for-update
 	$(MAKE) -C util/crossgcc build-riscv SKIP_GDB=1
 
-crosstools:
+crosstools: clean-for-update
 	$(MAKE) -C util/crossgcc all_with_gdb SKIP_CLANG=1
 
-iasl:
+iasl: clean-for-update
 	$(MAKE) -C util/crossgcc build_iasl
 
-clang:
+clang: clean-for-update
 	$(MAKE) -C util/crossgcc build_clang
 
 crosstools-i386: clean-for-update



More information about the coreboot-gerrit mailing list