diff options
| author | Max Filippov <jcmvbkbc@gmail.com> | 2012-12-10 16:26:25 -0500 |
|---|---|---|
| committer | Chris Zankel <chris@zankel.net> | 2012-12-19 00:10:25 -0500 |
| commit | 72100ed7efac290f24bd90a5e7c8bc9f231d167d (patch) | |
| tree | e58121cc67a8d4a44d95238cfc3ee233bebbcd97 | |
| parent | ec747b21c7c709a712e5eee0b4d4326d755d58b5 (diff) | |
xtensa: provide endianness macro for sparse
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Chris Zankel <chris@zankel.net>
| -rw-r--r-- | arch/xtensa/Makefile | 7 |
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),) | |||
| 54 | LDFLAGS := --no-relax | 54 | LDFLAGS := --no-relax |
| 55 | endif | 55 | endif |
| 56 | 56 | ||
| 57 | ifeq ($(shell echo -e __XTENSA_EB__ | $(CC) -E - | grep -v "\#"),1) | ||
| 58 | CHECKFLAGS += -D__XTENSA_EB__ | ||
| 59 | endif | ||
| 60 | ifeq ($(shell echo -e __XTENSA_EL__ | $(CC) -E - | grep -v "\#"),1) | ||
| 61 | CHECKFLAGS += -D__XTENSA_EL__ | ||
| 62 | endif | ||
| 63 | |||
| 57 | vardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y)) | 64 | vardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y)) |
| 58 | plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y)) | 65 | plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y)) |
| 59 | 66 | ||
