Commit 3eb8bc74 authored by Vicențiu Ciorbaru's avatar Vicențiu Ciorbaru

Make rocksdb not be compiled on x86 architectures

parent 57672a85
...@@ -15,6 +15,11 @@ MACRO(SKIP_ROCKSDB_PLUGIN msg) ...@@ -15,6 +15,11 @@ MACRO(SKIP_ROCKSDB_PLUGIN msg)
RETURN() RETURN()
ENDMACRO() ENDMACRO()
# We've had our builders hang during the build process. This prevents MariaRocks
# to be built on 32 bit intel OS kernels.
IF(CMAKE_SYSTEM_PROCESSOR MATCHES "i[36]86")
SKIP_ROCKSDB_PLUGIN("Intel 32 bit not supported.")
ENDIF()
# This plugin needs recent C++ compilers (it is using C++11 features) # This plugin needs recent C++ compilers (it is using C++11 features)
# Skip build for the old compilers # Skip build for the old compilers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment