kbuild: enable 'make CFLAGS=...' to add additional options to CC
[linux-block.git] / arch / um / Makefile-i386
CommitLineData
20d00213 1core-y += arch/um/sys-i386/ arch/i386/crypto/
1da177e4
LT
2
3TOP_ADDR := $(CONFIG_TOP_ADDR)
4
5ifeq ($(CONFIG_MODE_SKAS),y)
6 ifneq ($(CONFIG_MODE_TT),y)
7 START := 0x8048000
8 endif
9endif
10
20d00213
PBG
11LDFLAGS += -m elf_i386
12ELF_ARCH := $(SUBARCH)
13ELF_FORMAT := elf32-$(SUBARCH)
14OBJCOPYFLAGS := -O binary -R .note -R .comment -S
15
16ifeq ("$(origin SUBARCH)", "command line")
17ifneq ("$(shell uname -m | sed -e s/i.86/i386/)", "$(SUBARCH)")
a0f97e06 18KBUILD_CFLAGS += $(call cc-option,-m32)
20d00213
PBG
19AFLAGS += $(call cc-option,-m32)
20LINK-y += $(call cc-option,-m32)
21UML_OBJCOPYFLAGS += -F $(ELF_FORMAT)
22
23export LDFLAGS HOSTCFLAGS HOSTLDFLAGS UML_OBJCOPYFLAGS
24endif
25endif
26
d45e44d4 27ARCH_KERNEL_DEFINES += -U__$(SUBARCH)__ -U$(SUBARCH)
1da177e4 28
96d55b88
PBG
29# First of all, tune CFLAGS for the specific CPU. This actually sets cflags-y.
30include $(srctree)/arch/i386/Makefile.cpu
31
32# prevent gcc from keeping the stack 16 byte aligned. Taken from i386.
33cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
34
fec468b0
JD
35# Prevent sprintf in nfsd from being converted to strcpy and resulting in
36# an unresolved reference.
37cflags-y += -ffreestanding
38
a0f97e06 39KBUILD_CFLAGS += $(cflags-y)