]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
x86, compress: Force i386 instructions for the decompressor
authorH. Peter Anvin <hpa@zytor.com>
Fri, 25 Dec 2009 23:40:38 +0000 (15:40 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 25 Dec 2009 23:40:38 +0000 (15:40 -0800)
Recently, some distros have started shipping versions of gcc which
default to -march=i686.  This breaks building kernels for pre-i686
machines, even if they have been selected in Kconfig, due to the
generation of CMOV instructions.

There isn't enough benefit to try to preserve the generation of these
instructions even when selected, so simply force -march=i386 for the
decompressor when building a 32-bit kernel.

Reported-and-tested-by: Chris Rankin <rankincj@yahoo.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
LKML-Reference: <219280.97558.qm@web52907.mail.re2.yahoo.com>

arch/x86/boot/compressed/Makefile

index f8ed0658404cc559d7c65a261330dba620017f38..f25bbd37765a61b1971cff42e24c8a3f634a8914 100644 (file)
@@ -9,6 +9,7 @@ targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinu
 KBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ $(LINUX_INCLUDE) -O2
 KBUILD_CFLAGS += -fno-strict-aliasing -fPIC
 KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
+cflags-$(CONFIG_X86_32) := -march=i386
 cflags-$(CONFIG_X86_64) := -mcmodel=small
 KBUILD_CFLAGS += $(cflags-y)
 KBUILD_CFLAGS += $(call cc-option,-ffreestanding)