We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c64f7 commit 0a7a7d5Copy full SHA for 0a7a7d5
llvm/CMakeLists.txt
@@ -880,8 +880,8 @@ option (LLVM_ENABLE_BINDINGS "Build bindings." ON)
880
option (LLVM_ENABLE_TELEMETRY "Enable the telemetry library. If set to OFF, library cannot be enabled after build (eg., at runtime)" ON)
881
882
set(LLVM_ENABLE_ONDISK_CAS_default ON)
883
-if(CMAKE_SIZEOF_VOID_P LESS 8 OR "${CMAKE_SYSTEM_NAME}" MATCHES SunOS)
884
- # Build OnDiskCAS by default only on 64 bit machine that is not Solaris.
+if("${CMAKE_SYSTEM_NAME}" MATCHES SunOS)
+ # Build OnDiskCAS by default only on non-Solaris machines.
885
set(LLVM_ENABLE_ONDISK_CAS_default OFF)
886
endif()
887
option(LLVM_ENABLE_ONDISK_CAS "Build OnDiskCAS." ${LLVM_ENABLE_ONDISK_CAS_default})
0 commit comments