Browse Source

Merge pull request #1017 from rokups/disable-extra-linux-libs

Explicitly disable use of libedit, zlib, terminfo and libxml2 in LLVM builds
pull/1018/head
João Matos 8 years ago committed by GitHub
parent
commit
c2d9ca7932
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      build/scripts/LLVM.lua

4
build/scripts/LLVM.lua

@ -183,6 +183,10 @@ function cmake(gen, conf, builddir, options) @@ -183,6 +183,10 @@ function cmake(gen, conf, builddir, options)
or "cmake"
local cmd = cmake .. " -G " .. '"' .. gen .. '"'
.. ' -DLLVM_BUILD_TOOLS=false '
.. ' -DLLVM_ENABLE_LIBEDIT=false'
.. ' -DLLVM_ENABLE_ZLIB=false'
.. ' -DLLVM_ENABLE_TERMINFO=false'
.. ' -DLLVM_ENABLE_LIBXML2=false'
.. ' -DLLVM_INCLUDE_EXAMPLES=false '
.. ' -DLLVM_INCLUDE_DOCS=false '
.. ' -DLLVM_INCLUDE_TESTS=false'

Loading…
Cancel
Save