diff options
Diffstat (limited to 'arch/cris')
-rw-r--r-- | arch/cris/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/cris/Makefile b/arch/cris/Makefile index ee114699ef8e..e6bf00c262e0 100644 --- a/arch/cris/Makefile +++ b/arch/cris/Makefile | |||
@@ -29,18 +29,18 @@ LD = $(CROSS_COMPILE)ld -mcrislinux | |||
29 | OBJCOPYFLAGS := -O binary -R .note -R .comment -S | 29 | OBJCOPYFLAGS := -O binary -R .note -R .comment -S |
30 | 30 | ||
31 | CPPFLAGS_vmlinux.lds = -DDRAM_VIRTUAL_BASE=0x$(CONFIG_ETRAX_DRAM_VIRTUAL_BASE) | 31 | CPPFLAGS_vmlinux.lds = -DDRAM_VIRTUAL_BASE=0x$(CONFIG_ETRAX_DRAM_VIRTUAL_BASE) |
32 | AFLAGS += -mlinux | 32 | KBUILD_AFLAGS += -mlinux |
33 | 33 | ||
34 | CFLAGS := $(CFLAGS) -mlinux -march=$(arch-y) -pipe | 34 | KBUILD_CFLAGS += -mlinux -march=$(arch-y) -pipe |
35 | 35 | ||
36 | ifdef CONFIG_FRAME_POINTER | 36 | ifdef CONFIG_FRAME_POINTER |
37 | CFLAGS := $(subst -fomit-frame-pointer,,$(CFLAGS)) -g | 37 | KBUILD_CFLAGS := $(subst -fomit-frame-pointer,,$(KBUILD_CFLAGS)) -g |
38 | CFLAGS += -fno-omit-frame-pointer | 38 | KBUILD_CFLAGS += -fno-omit-frame-pointer |
39 | endif | 39 | endif |
40 | 40 | ||
41 | head-y := arch/$(ARCH)/$(SARCH)/kernel/head.o | 41 | head-y := arch/$(ARCH)/$(SARCH)/kernel/head.o |
42 | 42 | ||
43 | LIBGCC = $(shell $(CC) $(CFLAGS) -print-file-name=libgcc.a) | 43 | LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-file-name=libgcc.a) |
44 | 44 | ||
45 | core-y += arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/ | 45 | core-y += arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/ |
46 | core-y += arch/$(ARCH)/$(SARCH)/kernel/ arch/$(ARCH)/$(SARCH)/mm/ | 46 | core-y += arch/$(ARCH)/$(SARCH)/kernel/ arch/$(ARCH)/$(SARCH)/mm/ |