mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
00686e6d0e
cmake/jemalloc.cmake: for dependencies to work, LIBJEMALLOC should be the target name, not the path storage/tokudb/CMakeLists.txt: * check the preconditions * disable bdb tests (compilation errors) * set variable, instead of SET_PROPERTY. same effect, but doesn't fail when a plugin is disabled (that is, a target does not exist) storage/tokudb/ft-index/CMakeLists.txt: cmake should not look into examples/ directory, there is hand-crafted examples/Makefile that cmake will overwrite storage/tokudb/ft-index/buildheader/CMakeLists.txt: the syntax is ADD_EXECUTABLE(target source) and "source" is the file name storage/tokudb/ft-index/cmake_modules/TokuMergeLibs.cmake: Libraries must be specified in the specific order, REMOVE_DUPLICATES cannot be used, because it destroys this order. (when OSLIBS contains "-lpthread -ljemalloc -lpthread", REMOVE_DUPLICATES makes it "-lpthread -ljemalloc". But a thread library *must* be *after* jemalloc) storage/tokudb/ft-index/cmake_modules/TokuSetupCTest.cmake: * 'which' might print errors to stderr, they are not important, shut them up * we don't have TOKUDB_DATA, no need to warn about it * don't configure_file into itself (with input=output) storage/tokudb/ft-index/cmake_modules/TokuThirdParty.cmake: jemalloc is built externally to tokudb/ft-index storage/tokudb/ft-index/ft/CMakeLists.txt: the syntax is ADD_EXECUTABLE(target source) and "source" is the file name storage/tokudb/ft-index/ft/tests/CMakeLists.txt: the syntax is ADD_EXECUTABLE(target source) and "source" is the file name storage/tokudb/ft-index/locktree/tests/CMakeLists.txt: the syntax is ADD_EXECUTABLE(target source) and "source" is the file name storage/tokudb/ft-index/portability/CMakeLists.txt: s/jemalloc/libjemalloc/ storage/tokudb/ft-index/portability/os_malloc.cc: unnecessary include file storage/tokudb/ft-index/portability/tests/CMakeLists.txt: the syntax is ADD_EXECUTABLE(target source) and "source" is the file name storage/tokudb/ft-index/src/tests/CMakeLists.txt: the syntax is ADD_EXECUTABLE(target source) and "source" is the file name storage/tokudb/ft-index/util/tests/CMakeLists.txt: the syntax is ADD_EXECUTABLE(target source) and "source" is the file name storage/tokudb/ft-index/utils/CMakeLists.txt: the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
43 lines
1.6 KiB
CMake
43 lines
1.6 KiB
CMake
# ft-index can be compiled only with gcc-4.7+, cmake-2.8.8+
|
|
# and supports only x86-64 platform
|
|
IF(NOT CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" OR
|
|
CMAKE_VERSION VERSION_LESS "2.8.8" OR
|
|
NOT CMAKE_COMPILER_IS_GNUCXX OR
|
|
CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.7")
|
|
IF (NOT WITHOUT_TOKUDB)
|
|
MESSAGE("TokuDB is disabled: not supported
|
|
(${CMAKE_SYSTEM_PROCESSOR}-${CMAKE_VERSION}-<${CMAKE_COMPILER_IS_GNUCXX}>-${CMAKE_CXX_COMPILER_VERSION}")
|
|
ENDIF()
|
|
RETURN()
|
|
ENDIF()
|
|
SET(ENV{TOKUDB_VERSION} "7.0.2")
|
|
SET(USE_BDB OFF CACHE BOOL "")
|
|
############################################
|
|
|
|
IF(DEFINED ENV{TOKUDB_VERSION})
|
|
SET(TOKUDB_VERSION $ENV{TOKUDB_VERSION})
|
|
ADD_DEFINITIONS("-DTOKUDB_VERSION=\"${TOKUDB_VERSION}\"")
|
|
ENDIF()
|
|
|
|
IF(DEFINED ENV{TOKUDB_PATCHES})
|
|
SET(TOKUDB_PATCHES $ENV{TOKUDB_PATCHES})
|
|
ADD_DEFINITIONS("-DTOKUDB_PATCHES=${TOKUDB_PATCHES}")
|
|
ENDIF()
|
|
|
|
ADD_SUBDIRECTORY(ft-index)
|
|
|
|
# TODO: clean up includes in ft-index
|
|
INCLUDE_DIRECTORIES(ft-index)
|
|
INCLUDE_DIRECTORIES(ft-index/include)
|
|
INCLUDE_DIRECTORIES(ft-index/portability)
|
|
INCLUDE_DIRECTORIES(ft-index/toku_include)
|
|
INCLUDE_DIRECTORIES(ft-index/util)
|
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/ft-index)
|
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/ft-index/buildheader)
|
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/ft-index/toku_include)
|
|
|
|
SET(TOKUDB_PLUGIN_DYNAMIC "ha_tokudb")
|
|
SET(TOKUDB_SOURCES ha_tokudb.cc)
|
|
MYSQL_ADD_PLUGIN(tokudb ${TOKUDB_SOURCES} STORAGE_ENGINE MODULE_ONLY
|
|
LINK_LIBRARIES tokufractaltree_static tokuportability_static z stdc++)
|
|
SET(CMAKE_MODULE_LINKER_FLAGS_RELEASE "${CMAKE_MODULE_LINKER_FLAGS_RELEASE} -flto -fuse-linker-plugin")
|