diff options
| author | ruki <[email protected]> | 2024-12-02 10:44:41 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-12-02 10:44:41 +0800 |
| commit | 71a5624d37cdfaaba039a874e67341ee354357b7 (patch) | |
| tree | a426c9b2c89061f3ce6088c50020b855d5a18102 | |
| parent | ed5c11f035b660a6e97cb47202614a3881090d3a (diff) | |
| parent | 82ac3ca8cbc7c9b5996e67b7817c40014f6acb8a (diff) | |
Merge pull request #5914 from star-hengxing/tinycc
Fix tinycc asm toolset
| -rw-r--r-- | xmake/toolchains/tinycc/xmake.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmake/toolchains/tinycc/xmake.lua b/xmake/toolchains/tinycc/xmake.lua index ee4730b90..b5cf60724 100644 --- a/xmake/toolchains/tinycc/xmake.lua +++ b/xmake/toolchains/tinycc/xmake.lua @@ -74,6 +74,7 @@ toolchain("tinycc") toolchain:add("toolset", "ld", tcc) toolchain:add("toolset", "sh", tcc) toolchain:add("toolset", "ar", tcc) + toolchain:add("toolset", "as", tcc) -- add includedirs and linkdirs for _, package in ipairs(toolchain:packages()) do |
