9
0
Fork 0

004-arm-makefile

[Patch 04/17] U-Boot-V2:ARM: Remove unwanted flags from Makefile

CFLAGS: "-D __ARM__" should have been "-D__ARM__". this breaks sparse check.
Further -nostdinc in Makefile is redfined by
commit ID:847934bc960ba1588c87e283118318dfdd78d4c0
This is unecessary as NOSTDINC_FLAGS defines it

Signed-off-by: Nishanth Menon<x0nishan@ti.com>
This commit is contained in:
Nishanth Menon 2008-06-05 19:45:14 +02:00 committed by Sascha Hauer
parent a5a28b6829
commit 1ecafc5f8d
2 changed files with 2 additions and 3 deletions

View File

@ -305,8 +305,7 @@ LINUXINCLUDE := -Iinclude \
$(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) \
-include include/linux/autoconf.h
CPPFLAGS := -D__KERNEL__ -D__U_BOOT__ $(LINUXINCLUDE) -fno-builtin -ffreestanding \
-nostdinc
CPPFLAGS := -D__KERNEL__ -D__U_BOOT__ $(LINUXINCLUDE) -fno-builtin -ffreestanding
CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
-fno-strict-aliasing -fno-common -Os -pipe

View File

@ -1,5 +1,5 @@
CPPFLAGS += -D __ARM__ -fno-strict-aliasing
CPPFLAGS += -D__ARM__ -fno-strict-aliasing
machine-$(CONFIG_ARCH_IMX) := imx