[coreboot-gerrit] New patch to review for coreboot: c23ebe8 build system: Move .xcompile include further down

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Thu Jun 4 13:58:24 CEST 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10422

-gerrit

commit c23ebe8c01f16878378c5d50b1708f6552e639a9
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Thu Jun 4 13:18:11 2015 +0200

    build system: Move .xcompile include further down
    
    It's not used until then, but by moving it below including .config,
    we can use CONFIG_* in the .xcompile file in the future.
    
    Change-Id: I672f444dd28b5fae1fc339a1e0e78a249c9b7875
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 9d174e0..b41057c 100644
--- a/Makefile
+++ b/Makefile
@@ -38,8 +38,6 @@ $(if $(wildcard .xcompile),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) >
 	$< $(XGCCPATH) > $@.tmp
 	\mv -f $@.tmp $@ 2> /dev/null
 
-include .xcompile
-
 export top := $(CURDIR)
 export src := src
 export srck := $(top)/util/kconfig
@@ -122,6 +120,8 @@ else
 
 include $(HAVE_DOTCONFIG)
 
+include .xcompile
+
 ifeq ($(CONFIG_COMPILER_LLVM_CLANG),y)
 # FIXME: armv7/aarch64 won't build right now
 # NOTE: clang puts compiler-rt under lib/linux/libclang_rt.builtins-i386.a



More information about the coreboot-gerrit mailing list