|
2 | 2 | report: |
3 | 3 |
|
4 | 4 | # The list of target tuples that we want to test. |
5 | | -TARGETS = |
6 | | -TARGETS += newlib-rv32i-ilp32-medlow |
7 | | -TARGETS += newlib-rv32im-ilp32-medlow |
8 | | -TARGETS += newlib-rv32iac-ilp32-medlow |
9 | | -TARGETS += newlib-rv32imac-ilp32-medlow |
10 | | -TARGETS += newlib-rv32imafc-ilp32f-medlow |
11 | | -TARGETS += newlib-rv64imac-lp64-medlow |
12 | | -TARGETS += newlib-rv64imafdc-lp64d-medlow |
13 | | -TARGETS += linux-rv32imac-ilp32-medlow |
14 | | -TARGETS += linux-rv32imafdc-ilp32-medlow |
15 | | -TARGETS += linux-rv32imafdc-ilp32d-medlow |
16 | | -TARGETS += linux-rv64imac-lp64-medlow |
17 | | -TARGETS += linux-rv64imafdc-lp64-medlow |
18 | | -TARGETS += linux-rv64imafdc-lp64d-medlow |
19 | | -TARGETS += newlib-rv32i-ilp32-medany |
20 | | -TARGETS += newlib-rv32im-ilp32-medany |
21 | | -TARGETS += newlib-rv32iac-ilp32-medany |
22 | | -TARGETS += newlib-rv32imac-ilp32-medany |
23 | | -TARGETS += newlib-rv32imafc-ilp32f-medany |
24 | | -TARGETS += newlib-rv64imac-lp64-medany |
25 | | -TARGETS += newlib-rv64imafdc-lp64d-medany |
26 | | -TARGETS += linux-rv32imac-ilp32-medany |
27 | | -TARGETS += linux-rv32imafdc-ilp32-medany |
28 | | -TARGETS += linux-rv32imafdc-ilp32d-medany |
29 | | -TARGETS += linux-rv64imac-lp64-medany |
30 | | -TARGETS += linux-rv64imafdc-lp64-medany |
31 | | -TARGETS += linux-rv64imafdc-lp64d-medany |
| 5 | +TARGET_BASES = \ |
| 6 | + newlib-rv32i-ilp32 \ |
| 7 | + newlib-rv32im-ilp32 \ |
| 8 | + newlib-rv32iac-ilp32 \ |
| 9 | + newlib-rv32imac-ilp32 \ |
| 10 | + newlib-rv32imafc-ilp32f \ |
| 11 | + newlib-rv64imac-lp64 \ |
| 12 | + newlib-rv64imafdc-lp64d \ |
| 13 | + linux-rv32imac-ilp32 \ |
| 14 | + linux-rv32imafdc-ilp32 \ |
| 15 | + linux-rv32imafdc-ilp32d \ |
| 16 | + linux-rv64imac-lp64 \ |
| 17 | + linux-rv64imafdc-lp64 \ |
| 18 | + linux-rv64imafdc-lp64d |
| 19 | +TARGET_CODE_MODELS = medlow medany |
| 20 | +TARGETS ?= $(foreach CODE_MODEL,$(TARGET_CODE_MODELS), $(addsuffix -$(CODE_MODEL),$(TARGET_BASES))) |
32 | 21 |
|
33 | 22 | # This is the link between the report targets and the actual testsuite |
34 | 23 | # build/test runs. It's setup with a level of indirection here to make sure |
|
0 commit comments