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>
Reviewed-on: http://review.coreboot.org/5766
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Patrick Georgi 2014-05-17 14:20:11 +02:00
parent 58f73a69cd
commit b83f7deb78
2 changed files with 1 additions and 4 deletions

View File

@ -81,9 +81,6 @@ init_standard_toolchain = \
init_stages = \ init_stages = \
$(foreach stage,$(COREBOOT_STANDARD_STAGES),$(eval $(call init_standard_toolchain,$(stage)))) $(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)) $(eval $(call toolchain_to_dir))
$(call init_stages) $(call init_stages)

View File

@ -181,7 +181,7 @@ arch_config_aarch64() {
} }
arch_config_x86() { arch_config_x86() {
TARCH="i386" TARCH="x86_32"
TBFDARCH="i386" TBFDARCH="i386"
TCLIST="i386 x86_64" TCLIST="i386 x86_64"
TWIDTH="32" TWIDTH="32"