Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Jan 29, 2024
1 parent e82d8e3 commit 145e953
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xmake/modules/package/tools/cmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -805,9 +805,9 @@ function _build_for_make(package, configs, opt)
end
local jobs = _get_parallel_njobs(opt)
table.insert(argv, "-j" .. jobs)
if option.get("diagnosis") then
--if option.get("diagnosis") then
table.insert(argv, "VERBOSE=1")
end
--end
if is_host("bsd") then
os.vrunv("gmake", argv)
elseif is_subhost("windows") and package:is_plat("mingw") then
Expand All @@ -825,7 +825,7 @@ function _build_for_make(package, configs, opt)
end
os.vrunv(make, argv)
else
os.vrunv("make", argv)
os.vexec("make", argv)
end
end

Expand Down

0 comments on commit 145e953

Please sign in to comment.