Patrick Georgi (patrick@georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5766
-gerrit
commit 6bded8fcefd6d83b91ffafb378f9f383a3fb6ccc Author: Patrick Georgi patrick@georgi-clan.de Date: Sat May 17 14:20:11 2014 +0200
build: get rid of a special case
Don't call things in xcompile i386 and in the buildsystem x86_32 and then bridge things so they match. just call it the same everywhere.
Change-Id: Ieef5f03f7aafb0b0a606fbe5a2386e310d2b0e94 Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- toolchain.inc | 3 --- util/xcompile/xcompile | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-)
diff --git a/toolchain.inc b/toolchain.inc index 4e06775..8c62be0 100644 --- a/toolchain.inc +++ b/toolchain.inc @@ -82,9 +82,6 @@ init_standard_toolchain = \ init_stages = \ $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(eval $(call init_standard_toolchain,$(stage))))
-# This mapping is created to have consistency with xcompile naming -$(eval $(call create_class_compiler,x86_32,i386)) - $(eval $(call toolchain_to_dir))
$(call init_stages) diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 0ac2bec..b342de3 100644 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -181,7 +181,7 @@ arch_config_aarch64() { }
arch_config_x86() { - TARCH="i386" + TARCH="x86_32" TBFDARCH="i386" TCLIST="i386 x86_64" TWIDTH="32"