diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-07-02 16:17:37 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-07-03 16:31:28 +0200 |
commit | 8e411a4f87a293cd2a6c01a3a4494631a154751e (patch) | |
tree | e39073664028a7cd50ab02aa9fd22b53f805c02c /etc | |
parent | 9b479c36b60aab26451479c6b4e84af00b3ca8c8 (diff) | |
download | bootstrappable-toolchain-8e411a4f87a293cd2a6c01a3a4494631a154751e.tar.gz |
test.TARGETS: inherit shell and foreign toolchain
... and also add the missing bindings for the remaining test rules.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/defaults/CC/foreign/test.TARGETS | 5 | ||||
-rw-r--r-- | etc/defaults/shell/test.TARGETS | 6 | ||||
-rw-r--r-- | etc/repos.json | 12 |
3 files changed, 19 insertions, 4 deletions
diff --git a/etc/defaults/CC/foreign/test.TARGETS b/etc/defaults/CC/foreign/test.TARGETS index 7096f5f..6b094ad 100644 --- a/etc/defaults/CC/foreign/test.TARGETS +++ b/etc/defaults/CC/foreign/test.TARGETS @@ -1,4 +1,7 @@ -{ "defaults": {"type": ["CC/foreign", "defaults"]} +{ "defaults": + { "type": "defaults" + , "base": [["@", "stage-0", "CC/foreign", "defaults"]] + } , "expand_exec": { "type": "configure" , "target": ["@", "stage-0", "CC/foreign", "expand_exec"] diff --git a/etc/defaults/shell/test.TARGETS b/etc/defaults/shell/test.TARGETS index 705d1d7..7b0f232 100644 --- a/etc/defaults/shell/test.TARGETS +++ b/etc/defaults/shell/test.TARGETS @@ -1 +1,5 @@ -{"defaults": {"type": "defaults"}} +{ "defaults": + { "type": "defaults" + , "base": [["@", "stage-0", "shell", "defaults"]] + } +} diff --git a/etc/repos.json b/etc/repos.json index 5e941a1..aafeebc 100644 --- a/etc/repos.json +++ b/etc/repos.json @@ -721,14 +721,22 @@ , "target_root": "defaults" , "target_file_name": "test.TARGETS" , "rule_root": "rules" - , "bindings": {"rules": "rules", "toolchain": "gcc-latest-native"} + , "bindings": + { "rules": "rules" + , "toolchain": "gcc-latest-native" + , "stage-0": "rules/stage-0" + } } , "test/rules-gcc-musl": { "repository": "rules" , "target_root": "defaults" , "target_file_name": "test.TARGETS" , "rule_root": "rules" - , "bindings": {"rules": "rules", "toolchain": "gcc-latest-musl"} + , "bindings": + { "rules": "rules" + , "toolchain": "gcc-latest-musl" + , "stage-0": "rules/stage-0" + } } , "test/rules-gcc-musl-static": { "repository": "rules" |