summaryrefslogtreecommitdiff
path: root/xmake/modules/core/tools/zig.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-02-19 22:30:38 +0800
committerruki <[email protected]>2022-02-19 22:30:38 +0800
commit005a664f5b3ef7b833ab7b4afdb41583d56b6811 (patch)
tree8080d7acdc672cccbe428020c1e56dea2dcfb35a /xmake/modules/core/tools/zig.lua
parent43af40334dae383707c15ec731d515cd3ac6b834 (diff)
improve zig cc
Diffstat (limited to 'xmake/modules/core/tools/zig.lua')
-rw-r--r--xmake/modules/core/tools/zig.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/xmake/modules/core/tools/zig.lua b/xmake/modules/core/tools/zig.lua
index f0d6c5d98..88cfd0936 100644
--- a/xmake/modules/core/tools/zig.lua
+++ b/xmake/modules/core/tools/zig.lua
@@ -36,10 +36,9 @@ end
-- make the strip flag
function nf_strip(self, level)
- local maps =
- {
- debug = "--strip"
- , all = "--strip"
+ local maps = {
+ debug = "--strip"
+ , all = "--strip"
}
return maps[level]
end