File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
src/test/run-make/thumb-none-cortex-m Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
-include ../../run-make-fulldeps/tools.mk
2
2
3
3
# How to run this
4
- # $ ./x.py test --target thumbv7m-none-eabi src/test/run-make
4
+ # $ ./x.py clean
5
+ # $ ./x.py test --target thumbv6m-none-eabi,thumbv7m-none-eabi src/test/run-make
5
6
6
- ifeq ($(TARGET ) ,thumbv7m-none-eabi)
7
+ # Supported targets:
8
+ # - thumbv6m-none-eabi (Bare Cortex-M0, M0+, M1)
9
+ # - thumbv7em-none-eabi (Bare Cortex-M4, M7)
10
+ # - thumbv7em-none-eabihf (Bare Cortex-M4F, M7F, FPU, hardfloat)
11
+ # - thumbv7m-none-eabi (Bare Cortex-M3)
12
+
13
+ # See https://stackoverflow.com/questions/7656425/makefile-ifeq-logical-or
14
+ ifneq (,$(filter $(TARGET ) ,thumbv6m-none-eabi thumbv7em-none-eabi thumbv7em-none-eabihf thumbv7m-none-eabi) )
7
15
8
16
# We need to be outside of 'src' dir in order to run cargo
9
17
WORK_DIR := $(RUST_TEST_TMPDIR ) /run-make/$(TARGET )
You can’t perform that action at this time.
0 commit comments