mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
8103f6f223
Code was already existing within the innobase/xtradb storage engines however without this cmake code it was never enabled. num.cmake heavily based off work by Annamalai Gurusami <annamalai.gurusami@oracle.com> Signed-off-by: Daniel Black <daniel.black@au.ibm.com>
38 lines
1.1 KiB
CMake
38 lines
1.1 KiB
CMake
MACRO (MYSQL_CHECK_NUMA)
|
|
|
|
CHECK_INCLUDE_FILES(numa.h HAVE_NUMA_H)
|
|
CHECK_INCLUDE_FILES(numaif.h HAVE_NUMAIF_H)
|
|
|
|
IF(HAVE_NUMA_H AND HAVE_NUMAIF_H)
|
|
OPTION(WITH_NUMA "Explicitly set NUMA memory allocation policy" ON)
|
|
ELSE()
|
|
OPTION(WITH_NUMA "Explicitly set NUMA memory allocation policy" OFF)
|
|
ENDIF()
|
|
|
|
IF(WITH_NUMA AND HAVE_NUMA_H AND HAVE_NUMAIF_H)
|
|
SET(SAVE_CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
|
|
SET(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} numa)
|
|
CHECK_C_SOURCE_COMPILES(
|
|
"
|
|
#include <numa.h>
|
|
#include <numaif.h>
|
|
int main()
|
|
{
|
|
struct bitmask *all_nodes= numa_all_nodes_ptr;
|
|
set_mempolicy(MPOL_DEFAULT, 0, 0);
|
|
return all_nodes != NULL;
|
|
}"
|
|
HAVE_LIBNUMA)
|
|
SET(CMAKE_REQUIRED_LIBRARIES ${SAVE_CMAKE_REQUIRED_LIBRARIES})
|
|
ELSE()
|
|
SET(HAVE_LIBNUMA 0)
|
|
ENDIF()
|
|
|
|
IF(WITH_NUMA AND NOT HAVE_LIBNUMA)
|
|
# Forget it in cache, abort the build.
|
|
UNSET(WITH_NUMA CACHE)
|
|
MESSAGE(FATAL_ERROR "Could not find numa headers/libraries")
|
|
ENDIF()
|
|
|
|
ENDMACRO()
|
|
|