Skip to content

Commit 3eb8bc7

Browse files
committed
Make rocksdb not be compiled on x86 architectures
1 parent 57672a8 commit 3eb8bc7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

storage/rocksdb/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ MACRO(SKIP_ROCKSDB_PLUGIN msg)
1515
RETURN()
1616
ENDMACRO()
1717

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()
1823

1924
# This plugin needs recent C++ compilers (it is using C++11 features)
2025
# Skip build for the old compilers

0 commit comments

Comments
 (0)