[llvm] r293232 - Switch the default for building GlobalISel.

Quentin Colombet via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 26 15:53:31 PST 2017


Author: qcolombet
Date: Thu Jan 26 17:53:31 2017
New Revision: 293232

URL: http://llvm.org/viewvc/llvm-project?rev=293232&view=rev
Log:
Switch the default for building GlobalISel.

Now, GlobalISel will be built by default. To turn that off, one has to
use -DLLVM_BUILD_GLOBAL_ISEL=OFF on the cmake command line.

<rdar://problem/30004433>

Modified:
    llvm/trunk/CMakeLists.txt

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=293232&r1=293231&r2=293232&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Thu Jan 26 17:53:31 2017
@@ -178,7 +178,7 @@ if(LLVM_DEPENDENCY_DEBUGGING)
   endif()
 endif()
 
-option(LLVM_BUILD_GLOBAL_ISEL "Experimental: Build GlobalISel" OFF)
+option(LLVM_BUILD_GLOBAL_ISEL "Experimental: Build GlobalISel" ON)
 if(LLVM_BUILD_GLOBAL_ISEL)
   add_definitions(-DLLVM_BUILD_GLOBAL_ISEL)
 endif()




More information about the llvm-commits mailing list