summaryrefslogtreecommitdiff
path: root/xmake/core/base/winos.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-06-17 23:32:11 +0800
committerruki <[email protected]>2020-06-17 15:13:08 +0800
commitdcaeda333910bc331fc706394cef7dd8fa81b1fe (patch)
tree86dac91ccdcb5f1c308d9f6abb462a49c7c124dd /xmake/core/base/winos.lua
parent4e63f6c65ebb262333080f663702672eb9787bcf (diff)
improve cl to support 8192 limit
Diffstat (limited to 'xmake/core/base/winos.lua')
-rw-r--r--xmake/core/base/winos.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake/core/base/winos.lua b/xmake/core/base/winos.lua
index 5841f5a6c..40283e4f5 100644
--- a/xmake/core/base/winos.lua
+++ b/xmake/core/base/winos.lua
@@ -154,14 +154,15 @@ end
function winos.cmdargv(argv, key)
-- too long arguments?
+ local limit = 4096
local argn = 0
for _, arg in ipairs(argv) do
argn = argn + #arg
- if argn > 1024 then
+ if argn > limit then
break
end
end
- if argn > 1024 then
+ if argn > limit then
local argsfile = os.tmpfile(key or table.concat(argv, '')) .. ".args.txt"
local f = io.open(argsfile, 'w')
if f then