xtensa: provide endianness macro for sparse
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Chris Zankel <chris@zankel.net>
This commit is contained in:
parent
ec747b21c7
commit
72100ed7ef
|
@ -54,6 +54,13 @@ ifneq ($(CONFIG_LD_NO_RELAX),)
|
||||||
LDFLAGS := --no-relax
|
LDFLAGS := --no-relax
|
||||||
endif
|
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))
|
vardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y))
|
||||||
plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y))
|
plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue