summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-12-08 11:41:23 +0800
committerruki <[email protected]>2019-12-08 11:41:23 +0800
commit432bda24b0b3695f45f88358c3503b3117305f09 (patch)
tree1a9ca7f4255639b128d74bdf03f4d700075006ce
parentf2973f2e1a57910f5c2056ae9f4522fbff6d7112 (diff)
remove print
-rw-r--r--xmake/modules/detect/tools/gcc/has_flags.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/xmake/modules/detect/tools/gcc/has_flags.lua b/xmake/modules/detect/tools/gcc/has_flags.lua
index 7612dd845..e41de0229 100644
--- a/xmake/modules/detect/tools/gcc/has_flags.lua
+++ b/xmake/modules/detect/tools/gcc/has_flags.lua
@@ -41,7 +41,6 @@ function _try_running(...)
local argv = {...}
local errors = nil
- print(argv)
return try { function () os.runv(unpack(argv)); return true end, catch { function (errs) errors = (errs or ""):trim() end }}, errors
end