From: Chris Zankel Date: Sat, 4 Aug 2007 16:23:54 +0000 (-0700) Subject: [XTENSA] Add freestanding option to CFLAGS X-Git-Tag: v2.6.23-rc7~43^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b2444d34a0e727a80fee4b725bc5ecb9d0f206f0;p=thirdparty%2Fkernel%2Flinux.git [XTENSA] Add freestanding option to CFLAGS We also need to set the freestanding option for GCC in the CFLAGS. Signed-off-by: Chris Zankel --- diff --git a/arch/xtensa/Makefile b/arch/xtensa/Makefile index 95f836db38fa3..acf05be249291 100644 --- a/arch/xtensa/Makefile +++ b/arch/xtensa/Makefile @@ -27,7 +27,12 @@ platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss PLATFORM = $(platform-y) export PLATFORM -CFLAGS += -pipe -mlongcalls +# temporarily until string.h is fixed +cflags-y += -ffreestanding + +cflags-y += -pipe -mlongcalls + +CFLAGS += $(cflags-y) KBUILD_DEFCONFIG := iss_defconfig