summaryrefslogtreecommitdiff
path: root/xmake/modules/core/tools/cl.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-05-19 23:21:25 +0800
committerruki <[email protected]>2022-05-19 23:21:25 +0800
commit9b58179ce2a9f0957b7eddad677bb63993f98d49 (patch)
tree642ee3f31809b67323ff2338b3562e3ce1adf74d /xmake/modules/core/tools/cl.lua
parent3024730a94c340390213c79dc6d810ece1e28500 (diff)
remove logs
Diffstat (limited to 'xmake/modules/core/tools/cl.lua')
-rw-r--r--xmake/modules/core/tools/cl.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/xmake/modules/core/tools/cl.lua b/xmake/modules/core/tools/cl.lua
index dfa73cebd..75d9efed7 100644
--- a/xmake/modules/core/tools/cl.lua
+++ b/xmake/modules/core/tools/cl.lua
@@ -488,11 +488,8 @@ function _compile(self, sourcefile, objectfile, compflags, opt)
if cppinfo then
return cppinfo.outdata, cppinfo.errdata
else
- local dt = os.mclock()
local program, argv = compargv(self, sourcefile, objectfile, compflags, opt)
local outdata, errdata = vstool.iorunv(program, argv, {envs = self:runenvs()})
-
- print("fallback", os.mclock() - dt)
return outdata, errdata
end
end