From 12a0bfac7250c8acee2a0d3a1b83d744a3e11b1f Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Fri, 4 Apr 2008 23:38:51 +0000 Subject: [PATCH] fix i386-elf binutils weirdness. Thanks to Segher Boessenkool for finding this out. (trivial) Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/coreboot-v3@655 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- util/xcompile/xcompile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index a3c47bb042..9c9d3beb70 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -82,7 +82,7 @@ case "$ARCH" in fi echo "CC_x86 := $CC" echo "AR_x86 := i386-elf-ar" - echo "AS_x86 := i386-elf-as" + echo "AS_x86 := i386-elf-as --divide" echo "LD_x86 := i386-elf-ld" echo "NM_x86 := i386-elf-nm" echo "OBJCOPY_x86 := i386-elf-objcopy"