From 5e4a97d109b24444b9f2a80fdea6788d4d7a140d Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 30 Jul 2014 20:31:13 +0200 Subject: [PATCH] Default LLVM_STATIC to OFF (it's kinda broken currently, gives various linking issues). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca83e9dccbe..e1ed090e53d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -278,7 +278,7 @@ unset(PLATFORM_DEFAULT) # LLVM option(WITH_LLVM "Use LLVM" OFF) -option(LLVM_STATIC "Link with LLVM static libraries" ON) +option(LLVM_STATIC "Link with LLVM static libraries" OFF) mark_as_advanced(LLVM_STATIC) # disable for now, but plan to support on all platforms eventually