2024-05-19 23:25:31 +03:00
|
|
|
cmake_minimum_required(VERSION 3.18)
|
2019-07-08 04:11:21 +03:00
|
|
|
project(libmimalloc C CXX)
|
2019-11-02 08:01:52 +03:00
|
|
|
|
2019-06-20 02:52:36 +03:00
|
|
|
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-11-22 02:21:23 +03:00
|
|
|
option(MI_SECURE "Use full security mitigations (like guard pages, allocation randomization, double-free mitigation, and free-list corruption detection)" OFF)
|
2020-05-04 21:01:11 +03:00
|
|
|
option(MI_DEBUG_FULL "Use full internal heap invariant checking in DEBUG mode (expensive)" OFF)
|
2023-03-05 22:01:51 +03:00
|
|
|
option(MI_PADDING "Enable padding to detect heap block overflow (always on in DEBUG or SECURE mode, or with Valgrind/ASAN)" OFF)
|
2020-05-04 21:01:11 +03:00
|
|
|
option(MI_OVERRIDE "Override the standard malloc interface (e.g. define entry points for malloc() etc)" ON)
|
|
|
|
option(MI_XMALLOC "Enable abort() call on memory allocation failure by default" OFF)
|
|
|
|
option(MI_SHOW_ERRORS "Show error and warning messages by default (only enabled by default in DEBUG mode)" OFF)
|
2023-03-06 20:02:38 +03:00
|
|
|
option(MI_TRACK_VALGRIND "Compile with Valgrind support (adds a small overhead)" OFF)
|
|
|
|
option(MI_TRACK_ASAN "Compile with address sanitizer support (adds a small overhead)" OFF)
|
2023-03-17 06:08:43 +03:00
|
|
|
option(MI_TRACK_ETW "Compile with Windows event tracing (ETW) support (adds a small overhead)" OFF)
|
2020-05-04 21:01:11 +03:00
|
|
|
option(MI_USE_CXX "Use the C++ compiler to compile the library (instead of the C compiler)" OFF)
|
2019-11-14 22:01:05 +03:00
|
|
|
option(MI_SEE_ASM "Generate assembly files" OFF)
|
2021-11-03 07:54:44 +03:00
|
|
|
option(MI_OSX_INTERPOSE "Use interpose to override standard malloc on macOS" ON)
|
2022-12-03 02:23:43 +03:00
|
|
|
option(MI_OSX_ZONE "Use malloc zone to override standard malloc on macOS" ON)
|
2022-11-01 01:26:21 +03:00
|
|
|
option(MI_WIN_REDIRECT "Use redirection module ('mimalloc-redirect') on Windows if compiling mimalloc as a DLL" ON)
|
2019-09-04 13:02:16 +03:00
|
|
|
option(MI_LOCAL_DYNAMIC_TLS "Use slightly slower, dlopen-compatible TLS mechanism (Unix)" OFF)
|
2024-04-21 02:19:59 +03:00
|
|
|
option(MI_LIBC_MUSL "Set this when linking with musl libc" OFF)
|
2020-04-28 18:12:43 +03:00
|
|
|
option(MI_BUILD_SHARED "Build shared library" ON)
|
|
|
|
option(MI_BUILD_STATIC "Build static library" ON)
|
2020-05-04 21:01:11 +03:00
|
|
|
option(MI_BUILD_OBJECT "Build object library" ON)
|
|
|
|
option(MI_BUILD_TESTS "Build test executables" ON)
|
2020-07-21 19:10:45 +03:00
|
|
|
option(MI_DEBUG_TSAN "Build with thread sanitizer (needs clang)" OFF)
|
2020-07-26 05:55:36 +03:00
|
|
|
option(MI_DEBUG_UBSAN "Build with undefined-behavior sanitizer (needs clang++)" OFF)
|
2024-07-16 19:15:59 +03:00
|
|
|
option(MI_DEBUG_GUARDED "Build with guard pages behind certain object allocations (implies MI_NO_PADDING=ON)" OFF)
|
2023-03-30 02:17:10 +03:00
|
|
|
option(MI_SKIP_COLLECT_ON_EXIT "Skip collecting memory on program exit" OFF)
|
2023-03-06 20:02:38 +03:00
|
|
|
option(MI_NO_PADDING "Force no use of padding even in DEBUG mode etc." OFF)
|
2023-04-25 20:21:34 +03:00
|
|
|
option(MI_INSTALL_TOPLEVEL "Install directly into $CMAKE_INSTALL_PREFIX instead of PREFIX/lib/mimalloc-version" OFF)
|
2024-03-03 03:55:13 +03:00
|
|
|
option(MI_NO_THP "Disable transparent huge pages support on Linux/Android for the mimalloc process only" OFF)
|
2024-10-21 15:02:24 +03:00
|
|
|
option(MI_EXTRA_CPPDEFS "Extra pre-processor definitions (use as `-DMI_EXTRA_CPPDEFS=\"opt1=val1;opt2=val2\"`)" "")
|
2021-12-15 19:53:55 +03:00
|
|
|
|
|
|
|
# deprecated options
|
2024-10-22 08:59:41 +03:00
|
|
|
option(MI_WIN_USE_FLS "Use Fiber local storage on Windows to detect thread termination" OFF)
|
2020-05-04 21:01:11 +03:00
|
|
|
option(MI_CHECK_FULL "Use full internal invariant checking in DEBUG mode (deprecated, use MI_DEBUG_FULL instead)" OFF)
|
2021-12-15 19:53:55 +03:00
|
|
|
option(MI_USE_LIBATOMIC "Explicitly link with -latomic (on older systems) (deprecated and detected automatically)" OFF)
|
2019-06-20 02:52:36 +03:00
|
|
|
|
2024-05-19 23:25:31 +03:00
|
|
|
include(CheckLinkerFlag) # requires cmake 3.18
|
2022-10-30 22:49:29 +03:00
|
|
|
include(CheckIncludeFiles)
|
2021-09-28 20:34:56 +03:00
|
|
|
include(GNUInstallDirs)
|
2019-11-04 00:34:54 +03:00
|
|
|
include("cmake/mimalloc-config-version.cmake")
|
|
|
|
|
2019-06-20 02:52:36 +03:00
|
|
|
set(mi_sources
|
|
|
|
src/alloc.c
|
|
|
|
src/alloc-aligned.c
|
2019-07-07 23:44:33 +03:00
|
|
|
src/alloc-posix.c
|
2023-03-20 20:49:56 +03:00
|
|
|
src/arena.c
|
|
|
|
src/bitmap.c
|
2019-06-20 02:52:36 +03:00
|
|
|
src/heap.c
|
2023-03-15 02:54:46 +03:00
|
|
|
src/init.c
|
2023-05-19 20:24:39 +03:00
|
|
|
src/libc.c
|
2023-03-20 20:49:56 +03:00
|
|
|
src/options.c
|
|
|
|
src/os.c
|
|
|
|
src/page.c
|
|
|
|
src/random.c
|
|
|
|
src/segment.c
|
2023-04-05 02:00:17 +03:00
|
|
|
src/segment-map.c
|
2023-03-20 20:49:56 +03:00
|
|
|
src/stats.c
|
2023-03-15 02:54:46 +03:00
|
|
|
src/prim/prim.c)
|
2019-06-20 02:52:36 +03:00
|
|
|
|
2023-03-04 20:58:17 +03:00
|
|
|
set(mi_cflags "")
|
2024-05-11 18:08:03 +03:00
|
|
|
set(mi_cflags_static "") # extra flags for a static library build
|
|
|
|
set(mi_cflags_dynamic "") # extra flags for a shared-object library build
|
2023-03-04 20:58:17 +03:00
|
|
|
set(mi_libraries "")
|
2024-10-21 15:10:09 +03:00
|
|
|
|
|
|
|
if(MI_EXTRA_CPPDEFS)
|
|
|
|
set(mi_defines ${MI_EXTRA_CPPDEFS})
|
|
|
|
else()
|
|
|
|
set(mi_defines "")
|
|
|
|
endif()
|
2021-11-05 04:55:12 +03:00
|
|
|
|
2019-11-14 22:01:05 +03:00
|
|
|
# -----------------------------------------------------------------------------
|
2021-09-15 21:35:56 +03:00
|
|
|
# Convenience: set default build type depending on the build directory
|
2019-11-14 22:01:05 +03:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2022-12-03 02:23:43 +03:00
|
|
|
message(STATUS "")
|
2019-06-20 02:52:36 +03:00
|
|
|
if (NOT CMAKE_BUILD_TYPE)
|
2021-01-23 01:49:15 +03:00
|
|
|
if ("${CMAKE_BINARY_DIR}" MATCHES ".*(D|d)ebug$" OR MI_DEBUG_FULL)
|
2019-11-14 22:01:05 +03:00
|
|
|
message(STATUS "No build type selected, default to: Debug")
|
2019-06-20 02:52:36 +03:00
|
|
|
set(CMAKE_BUILD_TYPE "Debug")
|
|
|
|
else()
|
2019-11-14 22:01:05 +03:00
|
|
|
message(STATUS "No build type selected, default to: Release")
|
2019-06-20 02:52:36 +03:00
|
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if("${CMAKE_BINARY_DIR}" MATCHES ".*(S|s)ecure$")
|
2019-11-14 22:01:05 +03:00
|
|
|
message(STATUS "Default to secure build")
|
2019-06-25 04:54:03 +03:00
|
|
|
set(MI_SECURE "ON")
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
|
2021-11-05 04:55:12 +03:00
|
|
|
|
2019-11-14 22:01:05 +03:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Process options
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2024-03-24 20:39:22 +03:00
|
|
|
# put -Wall early so other warnings can be disabled selectively
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "AppleClang|Clang")
|
|
|
|
list(APPEND mi_cflags -Wall -Wextra -Wpedantic)
|
|
|
|
endif()
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
|
|
|
|
list(APPEND mi_cflags -Wall -Wextra)
|
|
|
|
endif()
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "Intel")
|
|
|
|
list(APPEND mi_cflags -Wall)
|
|
|
|
endif()
|
|
|
|
|
2022-04-15 02:47:43 +03:00
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "MSVC|Intel")
|
2019-07-23 19:59:20 +03:00
|
|
|
set(MI_USE_CXX "ON")
|
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_OVERRIDE)
|
2019-06-25 04:54:03 +03:00
|
|
|
message(STATUS "Override standard malloc (MI_OVERRIDE=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
if(APPLE)
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_OSX_ZONE)
|
2020-02-09 07:08:52 +03:00
|
|
|
# use zone's on macOS
|
|
|
|
message(STATUS " Use malloc zone to override malloc (MI_OSX_ZONE=ON)")
|
2023-03-20 20:49:56 +03:00
|
|
|
list(APPEND mi_sources src/prim/osx/alloc-override-zone.c)
|
2022-12-03 02:23:43 +03:00
|
|
|
list(APPEND mi_defines MI_OSX_ZONE=1)
|
2021-11-03 07:54:44 +03:00
|
|
|
if (NOT MI_OSX_INTERPOSE)
|
|
|
|
message(STATUS " WARNING: zone overriding usually also needs interpose (use -DMI_OSX_INTERPOSE=ON)")
|
|
|
|
endif()
|
2020-02-09 07:08:52 +03:00
|
|
|
endif()
|
2021-10-20 19:35:58 +03:00
|
|
|
if(MI_OSX_INTERPOSE)
|
2019-06-23 10:29:41 +03:00
|
|
|
# use interpose on macOS
|
2021-10-20 19:35:58 +03:00
|
|
|
message(STATUS " Use interpose to override malloc (MI_OSX_INTERPOSE=ON)")
|
2021-11-05 04:55:12 +03:00
|
|
|
list(APPEND mi_defines MI_OSX_INTERPOSE=1)
|
2021-11-03 07:54:44 +03:00
|
|
|
if (NOT MI_OSX_ZONE)
|
|
|
|
message(STATUS " WARNING: interpose usually also needs zone overriding (use -DMI_OSX_INTERPOSE=ON)")
|
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
2022-04-08 02:12:16 +03:00
|
|
|
if(MI_USE_CXX AND MI_OSX_INTERPOSE)
|
|
|
|
message(STATUS " WARNING: if dynamically overriding malloc/free, it is more reliable to build mimalloc as C code (use -DMI_USE_CXX=OFF)")
|
2021-11-05 04:55:12 +03:00
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2022-11-01 01:26:21 +03:00
|
|
|
if(WIN32)
|
|
|
|
if (MI_WIN_REDIRECT)
|
|
|
|
if (MSVC_C_ARCHITECTURE_ID MATCHES "ARM")
|
|
|
|
message(STATUS "Cannot use redirection on Windows ARM (MI_WIN_REDIRECT=OFF)")
|
|
|
|
set(MI_WIN_REDIRECT OFF)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if (NOT MI_WIN_REDIRECT)
|
|
|
|
# use a negative define for backward compatibility
|
|
|
|
list(APPEND mi_defines MI_WIN_NOREDIRECT=1)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_SECURE)
|
2019-11-22 02:21:23 +03:00
|
|
|
message(STATUS "Set full secure build (MI_SECURE=ON)")
|
2024-03-02 22:50:57 +03:00
|
|
|
list(APPEND mi_defines MI_SECURE=4)
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
|
2023-03-06 20:02:38 +03:00
|
|
|
if(MI_TRACK_VALGRIND)
|
2022-10-30 22:49:29 +03:00
|
|
|
CHECK_INCLUDE_FILES("valgrind/valgrind.h;valgrind/memcheck.h" MI_HAS_VALGRINDH)
|
|
|
|
if (NOT MI_HAS_VALGRINDH)
|
2023-03-06 20:02:38 +03:00
|
|
|
set(MI_TRACK_VALGRIND OFF)
|
2022-10-30 22:49:29 +03:00
|
|
|
message(WARNING "Cannot find the 'valgrind/valgrind.h' and 'valgrind/memcheck.h' -- install valgrind first")
|
2023-03-06 20:02:38 +03:00
|
|
|
message(STATUS "Compile **without** Valgrind support (MI_TRACK_VALGRIND=OFF)")
|
2022-10-30 22:49:29 +03:00
|
|
|
else()
|
2023-03-06 20:02:38 +03:00
|
|
|
message(STATUS "Compile with Valgrind support (MI_TRACK_VALGRIND=ON)")
|
|
|
|
list(APPEND mi_defines MI_TRACK_VALGRIND=1)
|
2022-10-30 22:49:29 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2023-03-06 20:02:38 +03:00
|
|
|
if(MI_TRACK_ASAN)
|
2023-03-04 20:58:17 +03:00
|
|
|
if (APPLE AND MI_OVERRIDE)
|
2023-03-06 20:02:38 +03:00
|
|
|
set(MI_TRACK_ASAN OFF)
|
|
|
|
message(WARNING "Cannot enable address sanitizer support on macOS if MI_OVERRIDE is ON (MI_TRACK_ASAN=OFF)")
|
2023-03-04 20:58:17 +03:00
|
|
|
endif()
|
2023-03-06 20:02:38 +03:00
|
|
|
if (MI_TRACK_VALGRIND)
|
|
|
|
set(MI_TRACK_ASAN OFF)
|
|
|
|
message(WARNING "Cannot enable address sanitizer support with also Valgrind support enabled (MI_TRACK_ASAN=OFF)")
|
2023-03-04 20:58:17 +03:00
|
|
|
endif()
|
2023-03-06 20:02:38 +03:00
|
|
|
if(MI_TRACK_ASAN)
|
2022-11-28 21:55:19 +03:00
|
|
|
CHECK_INCLUDE_FILES("sanitizer/asan_interface.h" MI_HAS_ASANH)
|
|
|
|
if (NOT MI_HAS_ASANH)
|
2023-03-06 20:02:38 +03:00
|
|
|
set(MI_TRACK_ASAN OFF)
|
2022-11-28 21:55:19 +03:00
|
|
|
message(WARNING "Cannot find the 'sanitizer/asan_interface.h' -- install address sanitizer support first")
|
2023-03-06 20:02:38 +03:00
|
|
|
message(STATUS "Compile **without** address sanitizer support (MI_TRACK_ASAN=OFF)")
|
2022-11-28 21:55:19 +03:00
|
|
|
else()
|
2023-03-06 20:02:38 +03:00
|
|
|
message(STATUS "Compile with address sanitizer support (MI_TRACK_ASAN=ON)")
|
|
|
|
list(APPEND mi_defines MI_TRACK_ASAN=1)
|
2022-11-28 21:55:19 +03:00
|
|
|
list(APPEND mi_cflags -fsanitize=address)
|
2023-03-04 20:58:17 +03:00
|
|
|
list(APPEND mi_libraries -fsanitize=address)
|
2022-11-28 21:55:19 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2023-03-17 06:08:43 +03:00
|
|
|
if(MI_TRACK_ETW)
|
2023-03-17 06:13:21 +03:00
|
|
|
if(NOT WIN32)
|
2023-03-17 06:08:43 +03:00
|
|
|
set(MI_TRACK_ETW OFF)
|
|
|
|
message(WARNING "Can only enable ETW support on Windows (MI_TRACK_ETW=OFF)")
|
|
|
|
endif()
|
|
|
|
if (MI_TRACK_VALGRIND OR MI_TRACK_ASAN)
|
|
|
|
set(MI_TRACK_ETW OFF)
|
|
|
|
message(WARNING "Cannot enable ETW support with also Valgrind or ASAN support enabled (MI_TRACK_ETW=OFF)")
|
|
|
|
endif()
|
|
|
|
if(MI_TRACK_ETW)
|
|
|
|
message(STATUS "Compile with Windows event tracing support (MI_TRACK_ETW=ON)")
|
|
|
|
list(APPEND mi_defines MI_TRACK_ETW=1)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2024-07-16 19:15:59 +03:00
|
|
|
if(MI_DEBUG_GUARDED)
|
|
|
|
message(STATUS "Compile guard pages behind certain object allocations (MI_DEBUG_GUARDED=ON)")
|
|
|
|
list(APPEND mi_defines MI_DEBUG_GUARDED=1)
|
|
|
|
if(NOT MI_NO_PADDING)
|
|
|
|
message(STATUS " Disabling padding due to guard pages (MI_NO_PADDING=ON)")
|
|
|
|
set(MI_NO_PADDING ON)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_SEE_ASM)
|
2019-06-25 04:54:03 +03:00
|
|
|
message(STATUS "Generate assembly listings (MI_SEE_ASM=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
list(APPEND mi_cflags -save-temps)
|
2024-03-24 20:39:22 +03:00
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "AppleClang|Clang")
|
|
|
|
message(STATUS "No GNU Line marker")
|
|
|
|
list(APPEND mi_cflags -Wno-gnu-line-marker)
|
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_CHECK_FULL)
|
2019-11-14 22:01:05 +03:00
|
|
|
message(STATUS "The MI_CHECK_FULL option is deprecated, use MI_DEBUG_FULL instead")
|
|
|
|
set(MI_DEBUG_FULL "ON")
|
|
|
|
endif()
|
|
|
|
|
2022-01-19 08:11:12 +03:00
|
|
|
if (MI_SKIP_COLLECT_ON_EXIT)
|
2022-02-04 02:56:53 +03:00
|
|
|
message(STATUS "Skip collecting memory on program exit (MI_SKIP_COLLECT_ON_EXIT=ON)")
|
2022-01-19 08:11:12 +03:00
|
|
|
list(APPEND mi_defines MI_SKIP_COLLECT_ON_EXIT=1)
|
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_DEBUG_FULL)
|
2019-11-22 02:21:23 +03:00
|
|
|
message(STATUS "Set debug level to full internal invariant checking (MI_DEBUG_FULL=ON)")
|
2019-06-20 02:52:36 +03:00
|
|
|
list(APPEND mi_defines MI_DEBUG=3) # full invariant checking
|
|
|
|
endif()
|
|
|
|
|
2023-03-05 22:01:51 +03:00
|
|
|
if(MI_NO_PADDING)
|
|
|
|
message(STATUS "Suppress any padding of heap blocks (MI_NO_PADDING=ON)")
|
|
|
|
list(APPEND mi_defines MI_PADDING=0)
|
|
|
|
else()
|
|
|
|
if(MI_PADDING)
|
|
|
|
message(STATUS "Enable explicit padding of heap blocks (MI_PADDING=ON)")
|
|
|
|
list(APPEND mi_defines MI_PADDING=1)
|
|
|
|
endif()
|
2020-04-07 20:01:18 +03:00
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_XMALLOC)
|
2020-04-21 11:39:57 +03:00
|
|
|
message(STATUS "Enable abort() calls on memory allocation failure (MI_XMALLOC=ON)")
|
|
|
|
list(APPEND mi_defines MI_XMALLOC=1)
|
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_SHOW_ERRORS)
|
2020-04-21 10:27:42 +03:00
|
|
|
message(STATUS "Enable printing of error and warning messages by default (MI_SHOW_ERRORS=ON)")
|
|
|
|
list(APPEND mi_defines MI_SHOW_ERRORS=1)
|
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_DEBUG_TSAN)
|
2020-07-26 05:55:36 +03:00
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "Clang")
|
|
|
|
message(STATUS "Build with thread sanitizer (MI_DEBUG_TSAN=ON)")
|
2020-07-26 09:50:22 +03:00
|
|
|
list(APPEND mi_defines MI_TSAN=1)
|
2020-07-26 05:55:36 +03:00
|
|
|
list(APPEND mi_cflags -fsanitize=thread -g -O1)
|
2023-03-04 20:58:17 +03:00
|
|
|
list(APPEND mi_libraries -fsanitize=thread)
|
2020-07-26 05:55:36 +03:00
|
|
|
else()
|
2022-12-03 02:23:43 +03:00
|
|
|
message(WARNING "Can only use thread sanitizer with clang (MI_DEBUG_TSAN=ON but ignored)")
|
|
|
|
endif()
|
2020-07-26 05:55:36 +03:00
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_DEBUG_UBSAN)
|
2022-12-03 02:23:43 +03:00
|
|
|
if(CMAKE_BUILD_TYPE MATCHES "Debug")
|
2020-07-26 05:55:36 +03:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
message(STATUS "Build with undefined-behavior sanitizer (MI_DEBUG_UBSAN=ON)")
|
2024-06-04 07:26:38 +03:00
|
|
|
list(APPEND mi_defines MI_UBSAN=1)
|
2022-02-10 22:46:28 +03:00
|
|
|
list(APPEND mi_cflags -fsanitize=undefined -g -fno-sanitize-recover=undefined)
|
2023-03-04 20:58:17 +03:00
|
|
|
list(APPEND mi_libraries -fsanitize=undefined)
|
2021-01-23 01:49:15 +03:00
|
|
|
if (NOT MI_USE_CXX)
|
2020-07-26 05:55:36 +03:00
|
|
|
message(STATUS "(switch to use C++ due to MI_DEBUG_UBSAN)")
|
|
|
|
set(MI_USE_CXX "ON")
|
|
|
|
endif()
|
|
|
|
else()
|
2022-12-03 02:23:43 +03:00
|
|
|
message(WARNING "Can only use undefined-behavior sanitizer with clang++ (MI_DEBUG_UBSAN=ON but ignored)")
|
|
|
|
endif()
|
2020-07-26 05:55:36 +03:00
|
|
|
else()
|
2024-03-03 04:07:09 +03:00
|
|
|
message(WARNING "Can only use undefined-behavior sanitizer with a debug build (CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE})")
|
2020-07-26 05:55:36 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_USE_CXX)
|
2019-06-25 04:54:03 +03:00
|
|
|
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 )
|
2022-02-10 22:58:25 +03:00
|
|
|
set_source_files_properties(src/static.c test/test-api.c test/test-api-fill test/test-stress PROPERTIES LANGUAGE CXX )
|
2020-01-18 02:39:41 +03:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang|Clang")
|
|
|
|
list(APPEND mi_cflags -Wno-deprecated)
|
|
|
|
endif()
|
2022-06-06 19:18:33 +03:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "Intel" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "IntelLLVM")
|
2020-01-20 05:35:45 +03:00
|
|
|
list(APPEND mi_cflags -Kc++)
|
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
|
2023-07-14 23:55:30 +03:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux|Android")
|
|
|
|
if(MI_NO_THP)
|
|
|
|
message(STATUS "Disable transparent huge pages support (MI_NO_THP=ON)")
|
|
|
|
list(APPEND mi_defines MI_NO_THP=1)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2024-04-21 02:19:59 +03:00
|
|
|
if(MI_LIBC_MUSL)
|
2024-05-11 18:08:03 +03:00
|
|
|
message(STATUS "Assume using musl libc (MI_LIBC_MUSL=ON)")
|
2024-04-21 02:19:59 +03:00
|
|
|
list(APPEND mi_defines MI_LIBC_MUSL=1)
|
|
|
|
endif()
|
|
|
|
|
2024-10-22 08:59:41 +03:00
|
|
|
if(MI_WIN_USE_FLS)
|
|
|
|
message(STATUS "Use the Fiber API to detect thread termination")
|
|
|
|
list(APPEND mi_defines MI_WIN_USE_FLS=1)
|
|
|
|
endif()
|
|
|
|
|
2024-10-28 07:58:20 +03:00
|
|
|
|
|
|
|
# Check /proc/cpuinfo for an SV39 MMU and define a constant if one is
|
|
|
|
# found. We will want to skip the aligned hinting in that case. Issue #939, #949
|
|
|
|
if (EXISTS /proc/cpuinfo)
|
|
|
|
file(STRINGS /proc/cpuinfo mi_sv39_mmu REGEX "^mmu[ \t]+:[ \t]+sv39$")
|
|
|
|
if (mi_sv39_mmu)
|
|
|
|
MESSAGE( STATUS "Disable aligned hints (SV39 MMU detected)" )
|
|
|
|
list(APPEND mi_defines MI_NO_ALIGNED_HINT=1)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2024-03-03 03:44:06 +03:00
|
|
|
# On Haiku use `-DCMAKE_INSTALL_PREFIX` instead, issue #788
|
|
|
|
# if(CMAKE_SYSTEM_NAME MATCHES "Haiku")
|
|
|
|
# SET(CMAKE_INSTALL_LIBDIR ~/config/non-packaged/lib)
|
|
|
|
# SET(CMAKE_INSTALL_INCLUDEDIR ~/config/non-packaged/headers)
|
|
|
|
# endif()
|
2023-03-30 02:02:46 +03:00
|
|
|
|
2019-06-20 02:52:36 +03:00
|
|
|
# Compiler flags
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "AppleClang|Clang|GNU")
|
2024-03-24 20:39:22 +03:00
|
|
|
list(APPEND mi_cflags -Wno-unknown-pragmas -fvisibility=hidden)
|
2021-10-20 19:55:03 +03:00
|
|
|
if(NOT MI_USE_CXX)
|
|
|
|
list(APPEND mi_cflags -Wstrict-prototypes)
|
2022-12-03 02:23:43 +03:00
|
|
|
endif()
|
2021-06-08 03:51:27 +03:00
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "AppleClang|Clang")
|
2024-03-24 20:39:22 +03:00
|
|
|
list(APPEND mi_cflags -Wno-static-in-inline)
|
2021-06-08 03:51:27 +03:00
|
|
|
endif()
|
2020-01-20 05:35:45 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "Intel")
|
2024-03-24 20:39:22 +03:00
|
|
|
list(APPEND mi_cflags -fvisibility=hidden)
|
2020-01-20 05:35:45 +03:00
|
|
|
endif()
|
|
|
|
|
2020-06-28 16:53:45 +03:00
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "AppleClang|Clang|GNU|Intel" AND NOT CMAKE_SYSTEM_NAME MATCHES "Haiku")
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_LOCAL_DYNAMIC_TLS)
|
2019-09-04 13:02:16 +03:00
|
|
|
list(APPEND mi_cflags -ftls-model=local-dynamic)
|
|
|
|
else()
|
2024-05-11 18:08:03 +03:00
|
|
|
if(MI_LIBC_MUSL)
|
|
|
|
# with musl we use local-dynamic for the static build, see issue #644
|
|
|
|
list(APPEND mi_cflags_static -ftls-model=local-dynamic)
|
|
|
|
list(APPEND mi_cflags_dynamic -ftls-model=initial-exec)
|
|
|
|
message(STATUS "Use local dynamic TLS for the static build (since MI_LIBC_MUSL=ON)")
|
|
|
|
else()
|
2024-06-04 03:58:34 +03:00
|
|
|
list(APPEND mi_cflags -ftls-model=initial-exec)
|
2024-05-11 18:08:03 +03:00
|
|
|
endif()
|
2019-09-04 13:02:16 +03:00
|
|
|
endif()
|
2021-11-03 07:54:44 +03:00
|
|
|
if(MI_OVERRIDE)
|
2021-11-14 00:30:03 +03:00
|
|
|
list(APPEND mi_cflags -fno-builtin-malloc)
|
2021-11-03 07:54:44 +03:00
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
endif()
|
|
|
|
|
2021-01-29 05:58:41 +03:00
|
|
|
if (MSVC AND MSVC_VERSION GREATER_EQUAL 1914)
|
|
|
|
list(APPEND mi_cflags /Zc:__cplusplus)
|
|
|
|
endif()
|
|
|
|
|
2024-05-21 22:06:52 +03:00
|
|
|
if(MINGW)
|
|
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
endif()
|
|
|
|
|
2019-06-20 02:52:36 +03:00
|
|
|
# extra needed libraries
|
2024-05-20 01:38:26 +03:00
|
|
|
|
2024-06-04 03:58:34 +03:00
|
|
|
# we prefer -l<lib> test over `find_library` as sometimes core libraries
|
2024-05-20 01:38:26 +03:00
|
|
|
# like `libatomic` are not on the system path (see issue #898)
|
2024-06-04 03:58:34 +03:00
|
|
|
function(find_link_library libname outlibname)
|
|
|
|
check_linker_flag(C "-l${libname}" mi_has_lib${libname})
|
2024-05-20 01:38:26 +03:00
|
|
|
if (mi_has_lib${libname})
|
|
|
|
message(VERBOSE "link library: -l${libname}")
|
2024-06-04 03:58:34 +03:00
|
|
|
set(${outlibname} ${libname} PARENT_SCOPE)
|
2024-05-20 01:38:26 +03:00
|
|
|
else()
|
|
|
|
find_library(MI_LIBPATH libname)
|
|
|
|
if (MI_LIBPATH)
|
|
|
|
message(VERBOSE "link library ${libname} at ${MI_LIBPATH}")
|
2024-06-04 03:58:34 +03:00
|
|
|
set(${outlibname} ${MI_LIBPATH} PARENT_SCOPE)
|
2024-05-20 01:38:26 +03:00
|
|
|
else()
|
|
|
|
message(VERBOSE "link library not found: ${libname}")
|
|
|
|
set(${outlibname} "" PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2019-06-20 02:52:36 +03:00
|
|
|
if(WIN32)
|
2024-06-04 03:58:34 +03:00
|
|
|
list(APPEND mi_libraries psapi shell32 user32 advapi32 bcrypt)
|
2019-06-20 02:52:36 +03:00
|
|
|
else()
|
2024-05-20 01:43:15 +03:00
|
|
|
find_link_library("pthread" MI_LIB_PTHREAD)
|
2024-06-04 03:58:34 +03:00
|
|
|
if(MI_LIB_PTHREAD)
|
2024-05-20 01:38:26 +03:00
|
|
|
list(APPEND mi_libraries "${MI_LIB_PTHREAD}")
|
2019-08-24 16:24:56 +03:00
|
|
|
endif()
|
2024-05-20 01:43:15 +03:00
|
|
|
find_link_library("rt" MI_LIB_RT)
|
2024-06-04 03:58:34 +03:00
|
|
|
if(MI_LIB_RT)
|
2024-05-20 01:38:26 +03:00
|
|
|
list(APPEND mi_libraries "${MI_LIB_RT}")
|
2022-06-19 20:20:53 +03:00
|
|
|
endif()
|
2024-05-20 01:43:15 +03:00
|
|
|
find_link_library("atomic" MI_LIB_ATOMIC)
|
2024-06-04 03:58:34 +03:00
|
|
|
if(MI_LIB_ATOMIC)
|
|
|
|
list(APPEND mi_libraries "${MI_LIB_ATOMIC}")
|
2021-12-15 19:42:58 +03:00
|
|
|
endif()
|
2021-10-20 19:35:58 +03:00
|
|
|
endif()
|
|
|
|
|
2019-06-27 23:36:19 +03:00
|
|
|
# -----------------------------------------------------------------------------
|
2019-11-14 22:01:05 +03:00
|
|
|
# Install and output names
|
2019-06-27 23:36:19 +03:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2021-12-15 19:41:52 +03:00
|
|
|
# dynamic/shared library and symlinks always go to /usr/local/lib equivalent
|
2024-05-21 22:06:52 +03:00
|
|
|
set(mi_install_libdir "${CMAKE_INSTALL_LIBDIR}")
|
|
|
|
set(mi_install_bindir "${CMAKE_INSTALL_BINDIR}")
|
2021-12-15 05:29:14 +03:00
|
|
|
|
2021-12-15 19:41:52 +03:00
|
|
|
# static libraries and object files, includes, and cmake config files
|
|
|
|
# are either installed at top level, or use versioned directories for side-by-side installation (default)
|
2021-01-30 02:49:57 +03:00
|
|
|
if (MI_INSTALL_TOPLEVEL)
|
2021-12-15 05:29:14 +03:00
|
|
|
set(mi_install_objdir "${CMAKE_INSTALL_LIBDIR}")
|
2022-12-03 02:23:43 +03:00
|
|
|
set(mi_install_incdir "${CMAKE_INSTALL_INCLUDEDIR}")
|
2021-12-15 05:29:14 +03:00
|
|
|
set(mi_install_cmakedir "${CMAKE_INSTALL_LIBDIR}/cmake/mimalloc")
|
2020-05-30 08:19:57 +03:00
|
|
|
else()
|
2021-12-15 05:29:14 +03:00
|
|
|
set(mi_install_objdir "${CMAKE_INSTALL_LIBDIR}/mimalloc-${mi_version}") # for static library and object files
|
|
|
|
set(mi_install_incdir "${CMAKE_INSTALL_INCLUDEDIR}/mimalloc-${mi_version}") # for includes
|
|
|
|
set(mi_install_cmakedir "${CMAKE_INSTALL_LIBDIR}/cmake/mimalloc-${mi_version}") # for cmake package info
|
2020-05-30 08:19:57 +03:00
|
|
|
endif()
|
2021-01-30 02:49:57 +03:00
|
|
|
|
2022-10-31 00:20:35 +03:00
|
|
|
set(mi_basename "mimalloc")
|
2021-01-30 02:52:18 +03:00
|
|
|
if(MI_SECURE)
|
2022-10-31 00:20:35 +03:00
|
|
|
set(mi_basename "${mi_basename}-secure")
|
|
|
|
endif()
|
2023-03-06 20:02:38 +03:00
|
|
|
if(MI_TRACK_VALGRIND)
|
2022-10-31 00:20:35 +03:00
|
|
|
set(mi_basename "${mi_basename}-valgrind")
|
2022-12-03 02:23:43 +03:00
|
|
|
endif()
|
2023-03-06 20:02:38 +03:00
|
|
|
if(MI_TRACK_ASAN)
|
2022-11-28 21:55:19 +03:00
|
|
|
set(mi_basename "${mi_basename}-asan")
|
2019-11-14 22:01:05 +03:00
|
|
|
endif()
|
|
|
|
string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LC)
|
2021-10-19 20:56:13 +03:00
|
|
|
if(NOT(CMAKE_BUILD_TYPE_LC MATCHES "^(release|relwithdebinfo|minsizerel|none)$"))
|
2019-11-14 22:01:05 +03:00
|
|
|
set(mi_basename "${mi_basename}-${CMAKE_BUILD_TYPE_LC}") #append build type (e.g. -debug) if not a release version
|
|
|
|
endif()
|
2022-10-31 00:20:35 +03:00
|
|
|
|
2020-05-04 21:01:11 +03:00
|
|
|
if(MI_BUILD_SHARED)
|
|
|
|
list(APPEND mi_build_targets "shared")
|
|
|
|
endif()
|
|
|
|
if(MI_BUILD_STATIC)
|
|
|
|
list(APPEND mi_build_targets "static")
|
|
|
|
endif()
|
|
|
|
if(MI_BUILD_OBJECT)
|
|
|
|
list(APPEND mi_build_targets "object")
|
|
|
|
endif()
|
|
|
|
if(MI_BUILD_TESTS)
|
|
|
|
list(APPEND mi_build_targets "tests")
|
|
|
|
endif()
|
2021-01-30 02:49:57 +03:00
|
|
|
|
2019-11-14 22:01:05 +03:00
|
|
|
message(STATUS "")
|
|
|
|
message(STATUS "Library base name: ${mi_basename}")
|
2021-11-14 00:30:03 +03:00
|
|
|
message(STATUS "Version : ${mi_version}")
|
2019-11-14 22:01:05 +03:00
|
|
|
message(STATUS "Build type : ${CMAKE_BUILD_TYPE_LC}")
|
2021-01-23 01:49:15 +03:00
|
|
|
if(MI_USE_CXX)
|
2021-11-05 04:55:12 +03:00
|
|
|
message(STATUS "C++ Compiler : ${CMAKE_CXX_COMPILER}")
|
2020-07-26 10:21:10 +03:00
|
|
|
else()
|
2021-11-05 04:55:12 +03:00
|
|
|
message(STATUS "C Compiler : ${CMAKE_C_COMPILER}")
|
2020-07-26 10:21:10 +03:00
|
|
|
endif()
|
2021-11-14 00:30:03 +03:00
|
|
|
message(STATUS "Compiler flags : ${mi_cflags}")
|
2021-12-14 00:10:33 +03:00
|
|
|
message(STATUS "Compiler defines : ${mi_defines}")
|
|
|
|
message(STATUS "Link libraries : ${mi_libraries}")
|
2020-05-04 21:01:11 +03:00
|
|
|
message(STATUS "Build targets : ${mi_build_targets}")
|
2019-11-14 22:01:05 +03:00
|
|
|
message(STATUS "")
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Main targets
|
|
|
|
# -----------------------------------------------------------------------------
|
2019-06-20 02:52:36 +03:00
|
|
|
|
|
|
|
# shared library
|
2020-04-28 18:12:43 +03:00
|
|
|
if(MI_BUILD_SHARED)
|
|
|
|
add_library(mimalloc SHARED ${mi_sources})
|
2021-11-28 20:14:31 +03:00
|
|
|
set_target_properties(mimalloc PROPERTIES VERSION ${mi_version} SOVERSION ${mi_version_major} OUTPUT_NAME ${mi_basename} )
|
2020-04-28 18:12:43 +03:00
|
|
|
target_compile_definitions(mimalloc PRIVATE ${mi_defines} MI_SHARED_LIB MI_SHARED_LIB_EXPORT)
|
2024-05-11 18:08:03 +03:00
|
|
|
target_compile_options(mimalloc PRIVATE ${mi_cflags} ${mi_cflags_dynamic})
|
2023-03-05 03:03:14 +03:00
|
|
|
target_link_libraries(mimalloc PRIVATE ${mi_libraries})
|
2021-06-08 02:47:57 +03:00
|
|
|
target_include_directories(mimalloc PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:${mi_install_incdir}>
|
|
|
|
)
|
2022-11-01 01:26:21 +03:00
|
|
|
if(WIN32 AND MI_WIN_REDIRECT)
|
|
|
|
# On windows, link and copy the mimalloc redirection dll too.
|
2021-05-04 12:26:07 +03:00
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
|
|
|
|
set(MIMALLOC_REDIRECT_SUFFIX "32")
|
|
|
|
else()
|
|
|
|
set(MIMALLOC_REDIRECT_SUFFIX "")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
target_link_libraries(mimalloc PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/bin/mimalloc-redirect${MIMALLOC_REDIRECT_SUFFIX}.lib)
|
2020-04-28 18:12:43 +03:00
|
|
|
add_custom_command(TARGET mimalloc POST_BUILD
|
2021-05-04 12:26:07 +03:00
|
|
|
COMMAND "${CMAKE_COMMAND}" -E copy "${CMAKE_CURRENT_SOURCE_DIR}/bin/mimalloc-redirect${MIMALLOC_REDIRECT_SUFFIX}.dll" $<TARGET_FILE_DIR:mimalloc>
|
|
|
|
COMMENT "Copy mimalloc-redirect${MIMALLOC_REDIRECT_SUFFIX}.dll to output directory")
|
2024-05-21 22:06:52 +03:00
|
|
|
install(FILES "$<TARGET_FILE_DIR:mimalloc>/mimalloc-redirect${MIMALLOC_REDIRECT_SUFFIX}.dll" DESTINATION ${mi_install_bindir})
|
2020-04-28 18:12:43 +03:00
|
|
|
endif()
|
|
|
|
|
2024-05-21 22:06:52 +03:00
|
|
|
install(TARGETS mimalloc EXPORT mimalloc ARCHIVE DESTINATION ${mi_install_libdir} RUNTIME DESTINATION ${mi_install_bindir} LIBRARY DESTINATION ${mi_install_libdir})
|
2021-05-22 01:15:50 +03:00
|
|
|
install(EXPORT mimalloc DESTINATION ${mi_install_cmakedir})
|
2019-07-23 19:36:58 +03:00
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
|
|
|
|
# static library
|
2020-04-28 18:12:43 +03:00
|
|
|
if (MI_BUILD_STATIC)
|
|
|
|
add_library(mimalloc-static STATIC ${mi_sources})
|
2020-05-04 19:51:09 +03:00
|
|
|
set_property(TARGET mimalloc-static PROPERTY POSITION_INDEPENDENT_CODE ON)
|
2020-04-28 18:12:43 +03:00
|
|
|
target_compile_definitions(mimalloc-static PRIVATE ${mi_defines} MI_STATIC_LIB)
|
2024-05-11 18:08:03 +03:00
|
|
|
target_compile_options(mimalloc-static PRIVATE ${mi_cflags} ${mi_cflags_static})
|
2022-11-22 21:54:40 +03:00
|
|
|
target_link_libraries(mimalloc-static PRIVATE ${mi_libraries})
|
2021-06-08 02:47:57 +03:00
|
|
|
target_include_directories(mimalloc-static PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:${mi_install_incdir}>
|
|
|
|
)
|
2020-05-04 19:51:09 +03:00
|
|
|
if(WIN32)
|
2020-04-28 18:12:43 +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.
|
|
|
|
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()
|
|
|
|
|
2021-12-15 05:29:14 +03:00
|
|
|
install(TARGETS mimalloc-static EXPORT mimalloc DESTINATION ${mi_install_objdir} LIBRARY)
|
2021-12-26 12:17:53 +03:00
|
|
|
install(EXPORT mimalloc DESTINATION ${mi_install_cmakedir})
|
2019-06-23 12:26:40 +03:00
|
|
|
endif()
|
2019-06-20 02:52:36 +03:00
|
|
|
|
2020-04-28 18:12:43 +03:00
|
|
|
# install include files
|
2021-05-22 01:15:50 +03:00
|
|
|
install(FILES include/mimalloc.h DESTINATION ${mi_install_incdir})
|
|
|
|
install(FILES include/mimalloc-override.h DESTINATION ${mi_install_incdir})
|
|
|
|
install(FILES include/mimalloc-new-delete.h DESTINATION ${mi_install_incdir})
|
|
|
|
install(FILES cmake/mimalloc-config.cmake DESTINATION ${mi_install_cmakedir})
|
|
|
|
install(FILES cmake/mimalloc-config-version.cmake DESTINATION ${mi_install_cmakedir})
|
2019-09-16 06:26:30 +03:00
|
|
|
|
2019-06-20 02:52:36 +03:00
|
|
|
|
|
|
|
# single object file for more predictable static overriding
|
2020-04-28 18:12:43 +03:00
|
|
|
if (MI_BUILD_OBJECT)
|
|
|
|
add_library(mimalloc-obj OBJECT src/static.c)
|
2020-05-04 19:51:09 +03:00
|
|
|
set_property(TARGET mimalloc-obj PROPERTY POSITION_INDEPENDENT_CODE ON)
|
2020-04-28 18:12:43 +03:00
|
|
|
target_compile_definitions(mimalloc-obj PRIVATE ${mi_defines})
|
2024-05-11 18:08:03 +03:00
|
|
|
target_compile_options(mimalloc-obj PRIVATE ${mi_cflags} ${mi_cflags_static})
|
2021-06-08 02:47:57 +03:00
|
|
|
target_include_directories(mimalloc-obj PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:${mi_install_incdir}>
|
|
|
|
)
|
2020-04-28 18:12:43 +03:00
|
|
|
|
2023-03-29 21:48:01 +03:00
|
|
|
# Copy the generated object file (`static.o`) to the output directory (as `mimalloc.o`)
|
2023-03-29 21:55:00 +03:00
|
|
|
if(NOT WIN32)
|
|
|
|
set(mimalloc-obj-static "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/mimalloc-obj.dir/src/static.c${CMAKE_C_OUTPUT_EXTENSION}")
|
|
|
|
set(mimalloc-obj-out "${CMAKE_CURRENT_BINARY_DIR}/${mi_basename}${CMAKE_C_OUTPUT_EXTENSION}")
|
|
|
|
add_custom_command(OUTPUT ${mimalloc-obj-out} DEPENDS mimalloc-obj COMMAND "${CMAKE_COMMAND}" -E copy "${mimalloc-obj-static}" "${mimalloc-obj-out}")
|
2024-03-02 22:50:57 +03:00
|
|
|
add_custom_target(mimalloc-obj-target ALL DEPENDS ${mimalloc-obj-out})
|
2023-03-29 21:55:00 +03:00
|
|
|
endif()
|
2023-03-29 21:48:01 +03:00
|
|
|
|
2020-04-28 18:12:43 +03:00
|
|
|
# the following seems to lead to cmake warnings/errors on some systems, disable for now :-(
|
2022-01-11 03:53:19 +03:00
|
|
|
# install(TARGETS mimalloc-obj EXPORT mimalloc DESTINATION ${mi_install_objdir})
|
2020-04-28 18:12:43 +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
|
2023-03-29 21:48:01 +03:00
|
|
|
install(FILES ${mimalloc-obj-static}
|
2021-12-15 05:29:14 +03:00
|
|
|
DESTINATION ${mi_install_objdir}
|
2020-04-28 18:12:43 +03:00
|
|
|
RENAME ${mi_basename}${CMAKE_C_OUTPUT_EXTENSION} )
|
|
|
|
endif()
|
2019-06-27 23:36:19 +03:00
|
|
|
|
2022-06-19 20:20:53 +03:00
|
|
|
# pkg-config file support
|
2024-05-20 01:38:26 +03:00
|
|
|
set(pc_libraries "")
|
|
|
|
foreach(item IN LISTS mi_libraries)
|
|
|
|
if(item MATCHES " *[-].*")
|
|
|
|
set(pc_libraries "${pc_libraries} ${item}")
|
|
|
|
else()
|
|
|
|
set(pc_libraries "${pc_libraries} -l${item}")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
2022-06-19 20:20:53 +03:00
|
|
|
include("cmake/JoinPaths.cmake")
|
|
|
|
join_paths(includedir_for_pc_file "\${prefix}" "${CMAKE_INSTALL_INCLUDEDIR}")
|
|
|
|
join_paths(libdir_for_pc_file "\${prefix}" "${CMAKE_INSTALL_LIBDIR}")
|
|
|
|
|
|
|
|
configure_file(mimalloc.pc.in mimalloc.pc @ONLY)
|
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/mimalloc.pc"
|
|
|
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig/")
|
|
|
|
|
2024-05-20 01:38:26 +03:00
|
|
|
|
|
|
|
|
2019-06-27 23:36:19 +03:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# API surface testing
|
|
|
|
# -----------------------------------------------------------------------------
|
2019-08-28 18:26:56 +03:00
|
|
|
|
2021-01-23 01:49:15 +03:00
|
|
|
if (MI_BUILD_TESTS)
|
2019-08-28 18:26:56 +03:00
|
|
|
enable_testing()
|
2021-12-21 14:54:15 +03:00
|
|
|
|
2021-12-19 21:45:39 +03:00
|
|
|
foreach(TEST_NAME api api-fill stress)
|
2021-12-21 14:54:15 +03:00
|
|
|
add_executable(mimalloc-test-${TEST_NAME} test/test-${TEST_NAME}.c)
|
|
|
|
target_compile_definitions(mimalloc-test-${TEST_NAME} PRIVATE ${mi_defines})
|
|
|
|
target_compile_options(mimalloc-test-${TEST_NAME} PRIVATE ${mi_cflags})
|
|
|
|
target_include_directories(mimalloc-test-${TEST_NAME} PRIVATE include)
|
|
|
|
target_link_libraries(mimalloc-test-${TEST_NAME} PRIVATE mimalloc ${mi_libraries})
|
|
|
|
|
|
|
|
add_test(NAME test-${TEST_NAME} COMMAND mimalloc-test-${TEST_NAME})
|
|
|
|
endforeach()
|
2019-08-28 18:26:56 +03:00
|
|
|
endif()
|
2019-06-27 23:36:19 +03:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Set override properties
|
|
|
|
# -----------------------------------------------------------------------------
|
2021-01-23 01:49:15 +03:00
|
|
|
if (MI_OVERRIDE)
|
2020-04-28 18:12:43 +03:00
|
|
|
if (MI_BUILD_SHARED)
|
|
|
|
target_compile_definitions(mimalloc PRIVATE MI_MALLOC_OVERRIDE)
|
|
|
|
endif()
|
2019-06-27 23:36:19 +03:00
|
|
|
if(NOT WIN32)
|
2019-11-14 22:01:05 +03:00
|
|
|
# It is only possible to override malloc on Windows when building as a DLL.
|
2020-04-28 18:12:43 +03:00
|
|
|
if (MI_BUILD_STATIC)
|
|
|
|
target_compile_definitions(mimalloc-static PRIVATE MI_MALLOC_OVERRIDE)
|
|
|
|
endif()
|
|
|
|
if (MI_BUILD_OBJECT)
|
|
|
|
target_compile_definitions(mimalloc-obj PRIVATE MI_MALLOC_OVERRIDE)
|
|
|
|
endif()
|
2019-06-27 23:36:19 +03:00
|
|
|
endif()
|
|
|
|
endif()
|