summaryrefslogtreecommitdiffstats
path: root/arch/xtensa/Makefile
diff options
context:
space:
mode:
authorMax Filippov2012-12-10 22:26:25 +0100
committerChris Zankel2012-12-19 06:10:25 +0100
commit72100ed7efac290f24bd90a5e7c8bc9f231d167d (patch)
treee58121cc67a8d4a44d95238cfc3ee233bebbcd97 /arch/xtensa/Makefile
parentxtensa: fix RASID SR initialization (diff)
downloadkernel-qcow2-linux-72100ed7efac290f24bd90a5e7c8bc9f231d167d.tar.gz
kernel-qcow2-linux-72100ed7efac290f24bd90a5e7c8bc9f231d167d.tar.xz
kernel-qcow2-linux-72100ed7efac290f24bd90a5e7c8bc9f231d167d.zip
xtensa: provide endianness macro for sparse
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa/Makefile')
-rw-r--r--arch/xtensa/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/xtensa/Makefile b/arch/xtensa/Makefile
index 7e0ae8fd4da8..4a8a6ffb68ba 100644
--- a/arch/xtensa/Makefile
+++ b/arch/xtensa/Makefile
@@ -54,6 +54,13 @@ ifneq ($(CONFIG_LD_NO_RELAX),)
LDFLAGS := --no-relax
endif
+ifeq ($(shell echo -e __XTENSA_EB__ | $(CC) -E - | grep -v "\#"),1)
+CHECKFLAGS += -D__XTENSA_EB__
+endif
+ifeq ($(shell echo -e __XTENSA_EL__ | $(CC) -E - | grep -v "\#"),1)
+CHECKFLAGS += -D__XTENSA_EL__
+endif
+
vardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y))
plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y))