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 57672a8 commit 3eb8bc7Copy full SHA for 3eb8bc7
storage/rocksdb/CMakeLists.txt
@@ -15,6 +15,11 @@ MACRO(SKIP_ROCKSDB_PLUGIN msg)
15
RETURN()
16
ENDMACRO()
17
18
+# We've had our builders hang during the build process. This prevents MariaRocks
19
+# to be built on 32 bit intel OS kernels.
20
+IF(CMAKE_SYSTEM_PROCESSOR MATCHES "i[36]86")
21
+ SKIP_ROCKSDB_PLUGIN("Intel 32 bit not supported.")
22
+ENDIF()
23
24
# This plugin needs recent C++ compilers (it is using C++11 features)
25
# Skip build for the old compilers
0 commit comments