summaryrefslogtreecommitdiff
path: root/xmake/core/tool/compiler.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2016-05-05 22:58:09 +0800
committerruki <[email protected]>2016-05-05 22:58:09 +0800
commite89130661686f0f3faf4ac87c989865b5fcc4823 (patch)
tree3996be74c90571570fb4fdaf00ddb9b28d46da72 /xmake/core/tool/compiler.lua
parent901771bcb402b51b27684d4e793ce3ca98df4a29 (diff)
fix config bug
Diffstat (limited to 'xmake/core/tool/compiler.lua')
-rw-r--r--xmake/core/tool/compiler.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/tool/compiler.lua b/xmake/core/tool/compiler.lua
index b76eaf743..f2a3c6147 100644
--- a/xmake/core/tool/compiler.lua
+++ b/xmake/core/tool/compiler.lua
@@ -447,7 +447,7 @@ function compiler:check(flags)
local ok, errors = sandbox.load(ctool.check, flags)
-- trace
- utils.printf("checking for the flags %s ... %s", flags, utils.ifelse(ok, "ok", "no"))
+ utils.verbose("checking for the flags %s ... %s", flags, utils.ifelse(ok, "ok", "no"))
if not ok then
utils.verbose(errors)
end