summaryrefslogtreecommitdiff
path: root/xmake/modules/core
diff options
context:
space:
mode:
authorruki <[email protected]>2021-10-26 23:11:01 +0800
committerruki <[email protected]>2021-10-26 23:11:01 +0800
commitccfb92f406dbd1535db64cfdb0e4a80d031805e9 (patch)
treef1f419b93732ebf1562dbc3820cb32cb8937a803 /xmake/modules/core
parentf818c0d180bd0e19070dbe03e0cbc1405712b2ed (diff)
improve mdk test
Diffstat (limited to 'xmake/modules/core')
-rw-r--r--xmake/modules/core/tools/armasm.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/core/tools/armasm.lua b/xmake/modules/core/tools/armasm.lua
index 98d2bea18..181d8b7e8 100644
--- a/xmake/modules/core/tools/armasm.lua
+++ b/xmake/modules/core/tools/armasm.lua
@@ -104,7 +104,7 @@ end
-- make the compile arguments list
function compargv(self, sourcefile, objectfile, flags)
- return self:program(), table.join("-c", flags, "-o", objectfile, sourcefile)
+ return self:program(), table.join(flags, "-o", objectfile, sourcefile)
end
-- compile the source file