Browse Source

Fix a syntax error in CMake listing Clang modules

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/1289/head
Dimitar Dobrev 6 years ago
parent
commit
36f754116f
  1. 2
      build/scripts/LLVM.lua

2
build/scripts/LLVM.lua

@ -214,7 +214,7 @@ function cmake(gen, conf, builddir, options) @@ -214,7 +214,7 @@ function cmake(gen, conf, builddir, options)
local cmd = cmake .. " -G " .. '"' .. gen .. '"'
.. ' -DLLVM_BUILD_TOOLS=false'
.. ' -DLLVM_ENABLE_DUMP=true'
.. ' -DLLVM_ENABLE_PROJECTS=clang;lld'
.. ' -DLLVM_ENABLE_PROJECTS="clang;lld"'
.. ' -DLLVM_INCLUDE_TESTS=false'
.. ' -DLLVM_ENABLE_LIBEDIT=false'
.. ' -DLLVM_ENABLE_LIBXML2=false'

Loading…
Cancel
Save