2019-06-20 02:52:36 +03:00
|
|
|
cmake_minimum_required(VERSION 3.0)
|
2019-07-08 04:11:21 +03:00
|
|
|
project(libmimalloc C CXX)
|
2019-06-20 02:52:36 +03:00
|
|
|
include("cmake/mimalloc-config-version.cmake")
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
2019-07-08 04:11:21 +03:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2019-06-20 02:52:36 +03:00
|
|
|
|
2019-08-28 18:26:56 +03:00
|
|
|
option(MI_OVERRIDE "Override the standard malloc interface" ON)
|
|
|
|
option(MI_INTERPOSE "Use interpose to override standard malloc on macOS" ON)
|
|
|
|
option(MI_SEE_ASM "Generate assembly files" OFF)
|
|
|
|
option(MI_CHECK_FULL "Use full internal invariant checking in DEBUG mode" OFF)
|
|
|
|
option(MI_USE_CXX "Use the C++ compiler to compile the library" OFF)
|
|
|
|
option(MI_SECURE "Use security mitigations (like guard pages and randomization)" OFF)
|
|
|
|
option(MI_BUILD_TESTS "Build test executables" ON)
|
2019-06-20 02:52:36 +03:00
|
|
|
|
|
|
|
set(mi_install_dir "lib/mimalloc-${mi_version}")
|
|
|
|
|
|
|
|
set(mi_sources
|
|
|
|
src/stats.c
|
|
|
|
src/os.c
|
2019-07-02 17:23:24 +03:00
|
|
|
src/memory.c
|
2019-06-20 02:52:36 +03:00
|
|
|
src/segment.c
|
|
|
|
src/page.c
|
|
|
|
src/alloc.c
|
|
|
|
src/alloc-aligned.c
|
2019-07-07 23:44:33 +03:00
|
|
|
src/alloc-posix.c
|
2019-06-20 02:52:36 +03:00
|
|
|
src/heap.c
|
|
|
|
src/options.c
|
|
|
|
src/init.c)
|
|
|
|
|
|
|
|
|
|
|
|
# Set default build type
|
|
|
|
if (NOT CMAKE_BUILD_TYPE)
|
|
|
|
if ("${CMAKE_BINARY_DIR}" MATCHES ".*(D|d)ebug$")
|
|
|
|
message(STATUS "No build type selected, default to *** Debug ***")
|
|
|
|
set(CMAKE_BUILD_TYPE "Debug")
|
|
|
|
else()
|
|
|
|
message(STATUS "No build type selected, default to *** Release ***")
|
|
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
message(STATUS "Build type specified as *** ${CMAKE_BUILD_TYPE} ***")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if("${CMAKE_BINARY_DIR}" MATCHES ".*(S|s)ecure$")
|
2019-06-25 04:54:03 +03:00
|
|
|
set(MI_SECURE "ON")
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Options
|
2019-06-25 04:54:03 +03:00
|
|
|
if(MI_OVERRIDE MATCHES "ON")
|
|
|
|
message(STATUS "Override standard malloc (MI_OVERRIDE=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
if(APPLE)
|
2019-06-25 04:54:03 +03:00
|
|
|
if(MI_INTERPOSE MATCHES "ON")
|
2019-06-23 10:29:41 +03:00
|
|
|
# use interpose on macOS
|
2019-06-25 04:54:03 +03:00
|
|
|
message(STATUS " Use interpose to override malloc (MI_INTERPOSE=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
list(APPEND mi_defines MI_INTERPOSE)
|
|
|
|
else()
|
2019-06-23 10:29:41 +03:00
|
|
|
# use zone's on macOS
|
2019-06-25 04:54:03 +03:00
|
|
|
message(STATUS " Use zone's to override malloc (MI_INTERPOSE=OFF)")
|
2019-06-20 02:52:36 +03:00
|
|
|
list(APPEND mi_sources src/alloc-override-osx.c)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2019-06-25 04:54:03 +03:00
|
|
|
if(MI_SECURE MATCHES "ON")
|
|
|
|
message(STATUS "Set secure build (MI_SECURE=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
list(APPEND mi_defines MI_SECURE=2)
|
|
|
|
endif()
|
|
|
|
|
2019-06-25 04:54:03 +03:00
|
|
|
if(MI_SEE_ASM MATCHES "ON")
|
|
|
|
message(STATUS "Generate assembly listings (MI_SEE_ASM=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
list(APPEND mi_cflags -save-temps)
|
|
|
|
endif()
|
|
|
|
|
2019-06-25 04:54:03 +03:00
|
|
|
if(MI_CHECK_FULL MATCHES "ON")
|
|
|
|
message(STATUS "Set debug level to full invariant checking (MI_CHECK_FULL=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
list(APPEND mi_defines MI_DEBUG=3) # full invariant checking
|
|
|
|
endif()
|
|
|
|
|
2019-06-25 04:54:03 +03:00
|
|
|
if(MI_USE_CXX MATCHES "ON")
|
|
|
|
message(STATUS "Use the C++ compiler to compile (MI_USE_CXX=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
set_source_files_properties(${mi_sources} PROPERTIES LANGUAGE CXX )
|
2019-07-08 04:11:21 +03:00
|
|
|
set_source_files_properties(src/static.c test/test-api.c PROPERTIES LANGUAGE CXX )
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Compiler flags
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "AppleClang|Clang|GNU")
|
|
|
|
list(APPEND mi_cflags -Wall -Wextra -Wno-unknown-pragmas -ftls-model=initial-exec)
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
|
|
|
|
list(APPEND mi_cflags -Wno-invalid-memory-model)
|
2019-06-23 18:04:43 +03:00
|
|
|
list(APPEND mi_cflags -fvisibility=hidden)
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT(CMAKE_BUILD_TYPE MATCHES "Release|RelWithDebInfo"))
|
|
|
|
string(TOLOWER "${CMAKE_BUILD_TYPE}" build_type)
|
|
|
|
set(mi_basename "mimalloc-${build_type}")
|
|
|
|
else()
|
2019-06-25 04:54:03 +03:00
|
|
|
if(MI_SECURE MATCHES "ON")
|
2019-06-20 02:52:36 +03:00
|
|
|
set(mi_basename "mimalloc-secure")
|
|
|
|
else()
|
|
|
|
set(mi_basename "mimalloc")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
message(STATUS "Output library name : ${mi_basename}")
|
|
|
|
message(STATUS "Installation directory: ${mi_install_dir}")
|
|
|
|
|
|
|
|
# extra needed libraries
|
|
|
|
if(WIN32)
|
|
|
|
list(APPEND mi_libraries psapi shell32 user32)
|
|
|
|
else()
|
|
|
|
list(APPEND mi_libraries pthread)
|
2019-08-24 16:24:56 +03:00
|
|
|
find_library(LIBRT rt)
|
|
|
|
if(LIBRT)
|
|
|
|
list(APPEND mi_libraries ${LIBRT})
|
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
|
2019-06-27 23:36:19 +03:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Main targets
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2019-06-20 02:52:36 +03:00
|
|
|
|
|
|
|
# shared library
|
|
|
|
add_library(mimalloc SHARED ${mi_sources})
|
|
|
|
set_target_properties(mimalloc PROPERTIES VERSION ${mi_version} NO_SONAME "YES" OUTPUT_NAME ${mi_basename} )
|
|
|
|
target_compile_definitions(mimalloc PRIVATE ${mi_defines} MI_SHARED_LIB MI_SHARED_LIB_EXPORT)
|
|
|
|
target_compile_options(mimalloc PRIVATE ${mi_cflags})
|
2019-06-27 13:43:27 +03:00
|
|
|
target_include_directories(mimalloc PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:${mi_install_dir}/include>
|
|
|
|
)
|
2019-06-20 02:52:36 +03:00
|
|
|
target_link_libraries(mimalloc PUBLIC ${mi_libraries})
|
|
|
|
|
|
|
|
# static library
|
|
|
|
add_library(mimalloc-static STATIC ${mi_sources})
|
2019-06-23 12:26:40 +03:00
|
|
|
if(WIN32)
|
2019-06-25 04:54:03 +03:00
|
|
|
# When building both static and shared libraries on Windows, a static library should use a
|
|
|
|
# different output name to avoid the conflict with the import library of a shared one.
|
2019-06-23 12:26:40 +03:00
|
|
|
string(REPLACE "mimalloc" "mimalloc-static" mi_output_name ${mi_basename})
|
|
|
|
set_target_properties(mimalloc-static PROPERTIES OUTPUT_NAME ${mi_output_name})
|
|
|
|
else()
|
|
|
|
set_target_properties(mimalloc-static PROPERTIES OUTPUT_NAME ${mi_basename})
|
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
target_compile_definitions(mimalloc-static PRIVATE ${mi_defines} MI_STATIC_LIB)
|
|
|
|
target_compile_options(mimalloc-static PRIVATE ${mi_cflags})
|
2019-06-27 13:43:27 +03:00
|
|
|
|
|
|
|
target_include_directories(mimalloc-static PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:${mi_install_dir}/include>
|
|
|
|
)
|
2019-06-20 02:52:36 +03:00
|
|
|
target_link_libraries(mimalloc-static PUBLIC ${mi_libraries})
|
|
|
|
|
|
|
|
# install static and shared library, and the include files
|
|
|
|
install(TARGETS mimalloc EXPORT mimalloc DESTINATION ${mi_install_dir} LIBRARY NAMELINK_SKIP)
|
|
|
|
install(TARGETS mimalloc-static EXPORT mimalloc DESTINATION ${mi_install_dir})
|
|
|
|
install(FILES include/mimalloc.h DESTINATION ${mi_install_dir}/include)
|
|
|
|
install(FILES cmake/mimalloc-config.cmake DESTINATION ${mi_install_dir}/cmake)
|
|
|
|
install(FILES cmake/mimalloc-config-version.cmake DESTINATION ${mi_install_dir}/cmake)
|
|
|
|
install(EXPORT mimalloc DESTINATION ${mi_install_dir}/cmake)
|
|
|
|
install(FILES "$<TARGET_FILE:mimalloc>" DESTINATION lib) # duplicate the .so in the lib directory (unversioned)
|
|
|
|
|
|
|
|
# single object file for more predictable static overriding
|
|
|
|
add_library(mimalloc-obj OBJECT src/static.c)
|
2019-06-23 12:26:40 +03:00
|
|
|
target_compile_definitions(mimalloc-obj PRIVATE ${mi_defines})
|
2019-06-20 02:52:36 +03:00
|
|
|
target_compile_options(mimalloc-obj PRIVATE ${mi_cflags})
|
2019-06-27 13:43:27 +03:00
|
|
|
target_include_directories(mimalloc-obj PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:${mi_install_dir}/include>
|
|
|
|
)
|
2019-06-20 02:52:36 +03:00
|
|
|
|
2019-07-15 00:47:59 +03:00
|
|
|
# the following seems to lead to cmake warnings/errors on some systems, disable for now :-(
|
2019-07-09 21:32:24 +03:00
|
|
|
# install(TARGETS mimalloc-obj EXPORT mimalloc DESTINATION ${mi_install_dir})
|
2019-07-08 23:37:41 +03:00
|
|
|
|
2019-07-15 00:47:59 +03:00
|
|
|
# the FILES expression can also be: $<TARGET_OBJECTS:mimalloc-obj>
|
|
|
|
# but that fails cmake versions less than 3.10 so we leave it as is for now
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/mimalloc-obj.dir/src/static.c${CMAKE_C_OUTPUT_EXTENSION}
|
2019-06-20 02:52:36 +03:00
|
|
|
DESTINATION ${mi_install_dir}
|
|
|
|
RENAME ${mi_basename}${CMAKE_C_OUTPUT_EXTENSION} )
|
2019-06-27 23:36:19 +03:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# API surface testing
|
|
|
|
# -----------------------------------------------------------------------------
|
2019-08-28 18:26:56 +03:00
|
|
|
|
|
|
|
if (MI_BUILD_TESTS MATCHES "ON")
|
|
|
|
add_executable(mimalloc-test-api test/test-api.c)
|
|
|
|
target_compile_definitions(mimalloc-test-api PRIVATE ${mi_defines})
|
|
|
|
target_compile_options(mimalloc-test-api PRIVATE ${mi_cflags})
|
|
|
|
target_include_directories(mimalloc-test-api PRIVATE include)
|
|
|
|
target_link_libraries(mimalloc-test-api PRIVATE mimalloc-static ${mi_libraries})
|
|
|
|
|
|
|
|
add_executable(mimalloc-test-stress test/test-stress.c)
|
|
|
|
target_compile_definitions(mimalloc-test-stress PRIVATE ${mi_defines})
|
|
|
|
target_compile_options(mimalloc-test-stress PRIVATE ${mi_cflags})
|
|
|
|
target_include_directories(mimalloc-test-stress PRIVATE include)
|
|
|
|
target_link_libraries(mimalloc-test-stress PRIVATE mimalloc-static ${mi_libraries})
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
add_test(test_api, mimalloc-test-api)
|
|
|
|
add_test(test_stress, mimalloc-test-stress)
|
|
|
|
endif()
|
2019-06-27 23:36:19 +03:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Set override properties
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
if (MI_OVERRIDE MATCHES "ON")
|
|
|
|
target_compile_definitions(mimalloc PRIVATE MI_MALLOC_OVERRIDE)
|
|
|
|
if(NOT WIN32)
|
|
|
|
# It is only possible to override malloc on Windows when building as a DLL. (src/alloc-override.c)
|
|
|
|
target_compile_definitions(mimalloc-static PRIVATE MI_MALLOC_OVERRIDE)
|
|
|
|
target_compile_definitions(mimalloc-obj PRIVATE MI_MALLOC_OVERRIDE)
|
|
|
|
endif()
|
|
|
|
endif()
|