diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-05-28 15:30:20 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-06-28 16:23:54 +0200 |
commit | 302f7d36a93d1317b4aea6c1559b1b1a71bc34ee (patch) | |
tree | 9cde11397ebeb539f651aa0815d9e2b520c89819 /etc/defaults/CC | |
parent | fcd091b1339768184c8f097048480dc34c867c36 (diff) | |
download | bootstrappable-toolchain-302f7d36a93d1317b4aea6c1559b1b1a71bc34ee.tar.gz |
stage-0: Use C-version of expand_exec
... thus having less requirements on our bootstrapped shell tool chain.
Diffstat (limited to 'etc/defaults/CC')
-rw-r--r-- | etc/defaults/CC/foreign/stage-0.TARGETS | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/etc/defaults/CC/foreign/stage-0.TARGETS b/etc/defaults/CC/foreign/stage-0.TARGETS index 8b2aad4..1da6276 100644 --- a/etc/defaults/CC/foreign/stage-0.TARGETS +++ b/etc/defaults/CC/foreign/stage-0.TARGETS @@ -1 +1,20 @@ -{"defaults": {"type": ["CC/foreign", "defaults"]}} +{ "defaults": {"type": ["CC/foreign", "defaults"]} +, "expand_exec": + { "type": "export" + , "target": "expand_exec (binary)" + , "flexible_config": + [ "TOOLCHAIN_CONFIG" + , "ARCH" + , "BUILD_ARCH" + , "HOST_ARCH" + , "TARGET_ARCH" + , "ENV" + ] + } +, "expand_exec (binary)": + { "type": ["CC", "binary"] + , "srcs": ["expand_exec.c"] + , "name": ["expand_exec"] + , "pure C": [""] + } +} |