Browse Source

Fix passing of CMake options to LLVM on Windows

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/1462/head
Dimitar Dobrev 5 years ago
parent
commit
2049d52f9c
  1. 2
      build/scripts/LLVM.lua

2
build/scripts/LLVM.lua

@ -209,7 +209,7 @@ function cmake(gen, conf, builddir, options) @@ -209,7 +209,7 @@ function cmake(gen, conf, builddir, options)
end
if os.ishost("windows") then
options = options .. "-Thost=x64"
options = options .. " -Thost=x64"
end
local cmd = cmake .. " -G " .. '"' .. gen .. '"'

Loading…
Cancel
Save