From 9e53db95bad4bacfaeb2de4fd807754d5204b388 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Thu, 1 Aug 2019 10:15:43 -0700 Subject: [PATCH] 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`? --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a0fc125459..2e37c98a8c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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