rust/src/test/run-make/thumb-none-cortex-m/Makefile

36 lines
1000 B
Makefile
Raw Normal View History

-include ../../run-make-fulldeps/tools.mk
# How to run this
# $ ./x.py clean
# $ ./x.py test --target thumbv6m-none-eabi,thumbv7m-none-eabi src/test/run-make
2018-08-06 13:19:00 +00:00
# Supported targets:
# - thumbv6m-none-eabi (Bare Cortex-M0, M0+, M1)
# - thumbv7em-none-eabi (Bare Cortex-M4, M7)
# - thumbv7em-none-eabihf (Bare Cortex-M4F, M7F, FPU, hardfloat)
# - thumbv7m-none-eabi (Bare Cortex-M3)
# See https://stackoverflow.com/questions/7656425/makefile-ifeq-logical-or
ifneq (,$(filter $(TARGET),thumbv6m-none-eabi thumbv7em-none-eabi thumbv7em-none-eabihf thumbv7m-none-eabi))
2018-08-06 13:19:00 +00:00
2018-08-08 09:41:05 +00:00
# We need to be outside of 'src' dir in order to run cargo
WORK_DIR := $(RUST_TEST_TMPDIR)/run-make/$(TARGET)
2018-08-06 13:19:00 +00:00
CRATE := cortex-m
2018-08-08 09:41:05 +00:00
CRATE_VER := 0.5.0
RUSTC := $(RUSTC_ORIGINAL)
LD_LIBRARY_PATH := $(HOST_RPATH_DIR)
2018-08-06 13:19:00 +00:00
all:
2018-08-08 09:41:05 +00:00
env
mkdir -p $(WORK_DIR)
-cd $(WORK_DIR) && rm -rf $(CRATE)
cd $(WORK_DIR) && $(CARGO) clone $(CRATE) --vers $(CRATE_VER)
cd $(WORK_DIR) && cd $(CRATE) && $(CARGO) build --target $(TARGET) -v
2018-08-06 13:19:00 +00:00
else
all:
endif