mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
19 lines
640 B
Makefile
19 lines
640 B
Makefile
include ../Makefile.build_system_common
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# BUILD_IN_DOCKER needs special handling to keep target order
|
|
ifeq ($(BUILD_IN_DOCKER),1)
|
|
all: ..in-docker-container
|
|
else
|
|
all: static-test
|
|
endif
|
|
|
|
static-test: $(ELFFILE)
|
|
$(Q)TEST_STARTADDR=$$($(OBJDUMP) -t $< | grep -E '\sxfatest_const$$' | awk '{ printf "0x%s", $$1}'); \
|
|
TEST_ENDADDR=$$($(OBJDUMP) -t $< | grep -E '\sxfatest_const_end$$' | awk '{ printf "0x%s", $$1}'); \
|
|
if test ! $$((TEST_STARTADDR)) -lt $$((TEST_ENDADDR)); then \
|
|
echo "Error: Static check of XFA linked const array failed, verify linker flags and try again" >&2; \
|
|
exit 1; \
|
|
fi
|