Alex James has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60218 )
Change subject: xcompile: Support i686-elf toolchains ......................................................................
xcompile: Support i686-elf toolchains
This allows i686-elf toolchains (such as those distributed by Homebrew) to be detected.
Change-Id: Ibdf2cdd8b244822740c03935747184ebc5ca1512 Signed-off-by: Alex James theracermaster@gmail.com --- M util/xcompile/xcompile 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/18/60218/1
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 4950a9e..d4b404c 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -364,8 +364,8 @@
arch_config_x86() { TARCH="x86_32" - TBFDARCHS="i386" - TCLIST="i386 x86_64" + TBFDARCHS="i386 i686" + TCLIST="i386 i686 x86_64" TWIDTH="32" TABI="elf" CC_RT_EXTRA_GCC="--wrap __divdi3 --wrap __udivdi3 --wrap __moddi3 --wrap __umoddi3"