mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
Link to jemalloc for better memory usage
This commit is contained in:
parent
ae7be185e6
commit
eae1a32487
33
debian/patches/0004-Link-to-jemalloc-for-better-memory-usage.patch
vendored
Normal file
33
debian/patches/0004-Link-to-jemalloc-for-better-memory-usage.patch
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
From: Jason Rhinelander <jason@imaginary.ca>
|
||||
Date: Tue, 29 Jun 2021 16:00:14 -0300
|
||||
Subject: Link to jemalloc for better memory usage
|
||||
|
||||
---
|
||||
CMakeLists.txt | 14 ++++++++++++++
|
||||
1 file changed, 14 insertions(+)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 475590b..7edb136 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -305,6 +305,20 @@ endif()
|
||||
add_subdirectory(external)
|
||||
include_directories(SYSTEM external/sqlite_orm/include)
|
||||
|
||||
+option(USE_JEMALLOC "Link to jemalloc for memory allocations, if found" ON)
|
||||
+if(USE_JEMALLOC AND NOT STATIC_LINK)
|
||||
+ pkg_check_modules(JEMALLOC jemalloc IMPORTED_TARGET)
|
||||
+ if(JEMALLOC_FOUND)
|
||||
+ message(STATUS "Found jemalloc ${JEMALLOC_VERSION}")
|
||||
+ target_link_libraries(base_libs INTERFACE PkgConfig::JEMALLOC)
|
||||
+ else()
|
||||
+ message(STATUS "jemalloc not found, not linking to jemalloc")
|
||||
+ endif()
|
||||
+else()
|
||||
+ message(STATUS "jemalloc support disabled")
|
||||
+endif()
|
||||
+
|
||||
+
|
||||
if(ANDROID)
|
||||
target_link_libraries(base_libs INTERFACE log)
|
||||
target_compile_definitions(base_libs INTERFACE ANDROID)
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -1,3 +1,4 @@
|
||||
0004-Make-root-bootstraps-to-system-path.patch
|
||||
0005-Move-default-user-group-into-deb-patch.patch
|
||||
0007-Pass-debian-version-as-GIT_VERSION.patch
|
||||
0004-Link-to-jemalloc-for-better-memory-usage.patch
|
||||
|
Loading…
Reference in New Issue
Block a user