chore(CMakeLists): set default to OFF

@joehendrix I changed the default to `LLVM=OFF` for now to avoid
disrupting existing projects. It will become `LLVM=ON` after we have
tested it more, and have the JIT integrated.

@kha Could you please set a new Azure pipeline job for `LLVM=ON`?
This commit is contained in:
Leonardo de Moura 2019-08-01 10:15:43 -07:00
parent e5d3a40d82
commit 9e53db95ba

View file

@ -33,7 +33,7 @@ option(JEMALLOC "JEMALLOC" OFF)
# When OFF we disable JSON support to support older compilers
option(JSON "JSON" ON)
# When OFF we disable LLVM support
option(LLVM "LLVM" ON)
option(LLVM "LLVM" OFF)
# When cross-compiling, we do not compile the standard library since
# the executable will not work on the host machine