summaryrefslogtreecommitdiff
path: root/xmake/modules/private/action/build/object.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/modules/private/action/build/object.lua
parent4e63f6c65ebb262333080f663702672eb9787bcf (diff)
improve cl to support 8192 limit
Diffstat (limited to 'xmake/modules/private/action/build/object.lua')
-rw-r--r--xmake/modules/private/action/build/object.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/modules/private/action/build/object.lua b/xmake/modules/private/action/build/object.lua
index 3b5bc1368..cee91e18e 100644
--- a/xmake/modules/private/action/build/object.lua
+++ b/xmake/modules/private/action/build/object.lua
@@ -65,7 +65,8 @@ function _do_build_file(target, sourcefile, opt)
-- trace verbose info
if verbose then
- print(compinst:compcmd(sourcefile, objectfile, {compflags = compflags}))
+ -- show the full link command with raw arguments, it will expand @xxx.args for msvc/link on windows
+ print(compinst:compcmd(sourcefile, objectfile, {compflags = compflags, rawargs = true}))
end
-- compile it