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.
2 parents 15878ee + 23b86a1 commit ebce682Copy full SHA for ebce682
storage/rocksdb/CMakeLists.txt
@@ -22,6 +22,13 @@ IF(CMAKE_SYSTEM_PROCESSOR MATCHES "i[36]86")
22
SKIP_ROCKSDB_PLUGIN("Intel 32 bit not supported.")
23
ENDIF()
24
25
+#
26
+# Also, disable building on 32-bit Windows
27
28
+IF (WIN32 AND CMAKE_SIZEOF_VOID_P EQUAL 4)
29
+ SKIP_ROCKSDB_PLUGIN("32-Bit Windows are temporarily disabled")
30
+ENDIF()
31
+
32
# This plugin needs recent C++ compilers (it is using C++11 features)
33
# Skip build for the old compilers
34
SET(CXX11_FLAGS)
0 commit comments