Browse Source

Removed one more redundant component when building Clang.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/642/head
Dimitar Dobrev 9 years ago
parent
commit
448a9217a7
  1. 11
      build/scripts/LLVM.lua

11
build/scripts/LLVM.lua

@ -146,11 +146,7 @@ function cmake(gen, conf, builddir, options) @@ -146,11 +146,7 @@ function cmake(gen, conf, builddir, options)
local cwd = os.getcwd()
os.chdir(builddir)
local cmd = "cmake -G " .. '"' .. gen .. '"'
.. ' -DCLANG_BUILD_EXAMPLES=false '
.. ' -DCLANG_INCLUDE_DOCS=false '
.. ' -DCLANG_INCLUDE_TESTS=false'
.. ' -DCLANG_ENABLE_ARCMT=false'
.. ' -DCLANG_ENABLE_STATIC_ANALYZER=false'
.. ' -DLLVM_BUILD_TOOLS=false '
.. ' -DLLVM_INCLUDE_EXAMPLES=false '
.. ' -DLLVM_INCLUDE_DOCS=false '
.. ' -DLLVM_INCLUDE_TESTS=false'
@ -204,6 +200,11 @@ function cmake(gen, conf, builddir, options) @@ -204,6 +200,11 @@ function cmake(gen, conf, builddir, options)
.. ' -DLLVM_TOOL_VERIFY_USELISTORDER_BUILD=false'
.. ' -DLLVM_TOOL_XCODE_TOOLCHAIN_BUILD=false'
.. ' -DLLVM_TOOL_YAML2OBJ_BUILD=false'
.. ' -DCLANG_BUILD_EXAMPLES=false '
.. ' -DCLANG_INCLUDE_DOCS=false '
.. ' -DCLANG_INCLUDE_TESTS=false'
.. ' -DCLANG_ENABLE_ARCMT=false'
.. ' -DCLANG_ENABLE_STATIC_ANALYZER=false'
.. ' -DCLANG_TOOL_ARCMT_TEST_BUILD=false'
.. ' -DCLANG_TOOL_CLANG_CHECK_BUILD=false'
.. ' -DCLANG_TOOL_CLANG_FORMAT_BUILD=false'

Loading…
Cancel
Save