Skip to content

Commit fe4d247

Browse files
committed
Sped the LLVM build on Windows up by parallelizing
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent fce2841 commit fe4d247

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/scripts/Build.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function msbuild(sln, conf)
1717
local msbuild_path = "msbuild.exe"
1818
local sln = path.normalize(sln)
1919

20-
local cmd = msbuild_path .. " " .. sln
20+
local cmd = msbuild_path .. " " .. sln .. " /m"
2121
if conf ~= nil then
2222
cmd = cmd .. " /p:Configuration=" .. conf
2323
end

0 commit comments

Comments
 (0)