diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2014-01-08 06:21:20 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2014-01-22 07:21:45 -0500 |
commit | 1c678da3bd1339299ab667af68cad5032367fb1c (patch) | |
tree | d4df9e4d44b85ab6a171bdcad5fb5b7c588228c5 /arch/x86/boot | |
parent | 214a88768d34079b70e0f2ba37b91a3b717fddbb (diff) |
x86: Remove duplication of 16-bit CFLAGS
Define them once in arch/x86/Makefile instead of twice.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Link: http://lkml.kernel.org/r/1389180083-23249-1-git-send-email-David.Woodhouse@intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/boot')
-rw-r--r-- | arch/x86/boot/Makefile | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile index d9c11956fce0..7c2b0a18a6ea 100644 --- a/arch/x86/boot/Makefile +++ b/arch/x86/boot/Makefile | |||
@@ -51,20 +51,7 @@ $(obj)/cpustr.h: $(obj)/mkcpustr FORCE | |||
51 | 51 | ||
52 | # --------------------------------------------------------------------------- | 52 | # --------------------------------------------------------------------------- |
53 | 53 | ||
54 | # How to compile the 16-bit code. Note we always compile for -march=i386, | 54 | KBUILD_CFLAGS := $(USERINCLUDE) $(REALMODE_CFLAGS) -D_SETUP |
55 | # that way we can complain to the user if the CPU is insufficient. | ||
56 | KBUILD_CFLAGS := $(USERINCLUDE) -m32 -g -Os -D_SETUP -D__KERNEL__ \ | ||
57 | -DDISABLE_BRANCH_PROFILING \ | ||
58 | -Wall -Wstrict-prototypes \ | ||
59 | -march=i386 -mregparm=3 \ | ||
60 | -include $(srctree)/$(src)/code16gcc.h \ | ||
61 | -fno-strict-aliasing -fomit-frame-pointer -fno-pic \ | ||
62 | -mno-mmx -mno-sse \ | ||
63 | $(call cc-option, -ffreestanding) \ | ||
64 | $(call cc-option, -fno-toplevel-reorder,\ | ||
65 | $(call cc-option, -fno-unit-at-a-time)) \ | ||
66 | $(call cc-option, -fno-stack-protector) \ | ||
67 | $(call cc-option, -mpreferred-stack-boundary=2) | ||
68 | KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__ | 55 | KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__ |
69 | GCOV_PROFILE := n | 56 | GCOV_PROFILE := n |
70 | 57 | ||