]> granicus.if.org Git - llvm/commitdiff
Switch the default for building GlobalISel.
authorQuentin Colombet <qcolombet@apple.com>
Thu, 26 Jan 2017 23:53:31 +0000 (23:53 +0000)
committerQuentin Colombet <qcolombet@apple.com>
Thu, 26 Jan 2017 23:53:31 +0000 (23:53 +0000)
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>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293232 91177308-0d34-0410-b5e6-96231b3b80d8

CMakeLists.txt

index bd5faacf6c3ee17717a94939a01ec1ac8924c024..5cb24ea7d7840c8207de1fd523f36d9a92c46e49 100644 (file)
@@ -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()