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:
parent
58f73a69cd
commit
b83f7deb78
|
@ -81,9 +81,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)
|
||||
|
|
|
@ -181,7 +181,7 @@ arch_config_aarch64() {
|
|||
}
|
||||
|
||||
arch_config_x86() {
|
||||
TARCH="i386"
|
||||
TARCH="x86_32"
|
||||
TBFDARCH="i386"
|
||||
TCLIST="i386 x86_64"
|
||||
TWIDTH="32"
|
||||
|
|
Loading…
Reference in New Issue