diff options
| author | ruki <[email protected]> | 2026-05-11 13:57:30 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-05-11 13:57:30 +0800 |
| commit | fe5d4800ea9c524c06cc54c52afa3955da2612f1 (patch) | |
| tree | f72fe3c09ea76809ada5f98bee28cf6e1911d30e /tests/projects/ascendc/mixed_binary/test.lua | |
| parent | c14b01fd77d4d31376f03263e9833deadb998e4e (diff) | |
| parent | 70f6ecdc9aeecabeee5727867b3dae13d006c82f (diff) | |
Merge pull request #7535 from xmake-io/ascend
Add Huawei Ascend C toolchain support
Diffstat (limited to 'tests/projects/ascendc/mixed_binary/test.lua')
| -rw-r--r-- | tests/projects/ascendc/mixed_binary/test.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/ascendc/mixed_binary/test.lua b/tests/projects/ascendc/mixed_binary/test.lua new file mode 100644 index 000000000..0a36e62e4 --- /dev/null +++ b/tests/projects/ascendc/mixed_binary/test.lua @@ -0,0 +1,9 @@ +function main(t) + if not is_host("linux") then + return t:skip("wrong host platform") + end + if not os.getenv("ASCEND_HOME_PATH") then + return t:skip("ASCEND_HOME_PATH not set") + end + t:build() +end |
