1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-30 05:23:50 +03:00

Make rocksdb not be compiled on x86 architectures

This commit is contained in:
Vicențiu Ciorbaru
2017-03-14 01:01:11 +02:00
parent 57672a85e3
commit 3eb8bc7408

View File

@@ -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