diff options
| author | ruki <[email protected]> | 2015-12-17 09:25:05 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-12-17 09:25:05 +0800 |
| commit | 6c6b9ae901f5cf8aaf1f89d43b8f09bad832990f (patch) | |
| tree | 9e46b51ab81181f8be7e42b1edfa5a0473c96fb0 /xmake/scripts/platform/windows/prober.lua | |
| parent | 61ae08bdfaf5f8dbde739677ce6997b28560a522 (diff) | |
fix probe g++ failed for ld
Diffstat (limited to 'xmake/scripts/platform/windows/prober.lua')
| -rw-r--r-- | xmake/scripts/platform/windows/prober.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmake/scripts/platform/windows/prober.lua b/xmake/scripts/platform/windows/prober.lua index d5ccdef88..4a853325d 100644 --- a/xmake/scripts/platform/windows/prober.lua +++ b/xmake/scripts/platform/windows/prober.lua @@ -47,7 +47,7 @@ function prober._probe_arch(configs) configs.set("arch", xmake._ARCH) -- trace - utils.verbose("checking for the architecture ... %s", configs.get("arch")) + utils.printf("checking for the architecture ... %s", configs.get("arch")) -- ok return true @@ -96,7 +96,7 @@ function prober._probe_vs_version(configs) configs.set("vs", vs) -- trace - utils.verbose("checking for the Microsoft Visual Studio version ... %s", vs) + utils.printf("checking for the Microsoft Visual Studio version ... %s", vs) else -- failed utils.error("checking for the Microsoft Visual Studio version ... no") @@ -217,9 +217,9 @@ function prober._probe_toolpath(configs, kind, name, description) -- trace if toolpath then - utils.verbose("checking for %s (%s) ... %s", description, kind, path.filename(toolpath), "no") + utils.printf("checking for %s (%s) ... %s", description, kind, path.filename(toolpath)) else - utils.verbose("checking for %s (%s) ... no", description, kind) + utils.printf("checking for %s (%s) ... no", description, kind) end -- ok |
