Skip to content

Commit

Permalink
Merge pull request #396 from GEOS-ESM/feature/mathomp4/add-jemalloc-v3
Browse files Browse the repository at this point in the history
Add FindJeMalloc.cmake (v3 branch)
  • Loading branch information
mathomp4 authored Sep 5, 2024
2 parents 171d8c9 + c5fcd4e commit 172e1bc
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [3.51.0] - 2024-08-13

### Added

- Add `FindJeMalloc.cmake` for use with builds of GEOSgcm

## [3.50.0] - 2024-08-12

### Changed
Expand All @@ -29,7 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Edit the file `esma_add_fortran_submodules.cmake` to add the `SMOD` word to the target submodule file name.


## [3.48.0] - 2024-07-15

### Changed
Expand Down
29 changes: 29 additions & 0 deletions external_libraries/FindJeMalloc.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# - Find JeMalloc library
# Find the native JeMalloc includes and library
#
# JeMalloc_INCLUDE_DIRS - where to find jemalloc.h, etc.
# JeMalloc_LIBRARIES - List of libraries when using jemalloc.
# JeMalloc_FOUND - True if jemalloc found.

find_path(JeMalloc_INCLUDE_DIRS
NAMES jemalloc/jemalloc.h
HINTS ${JEMALLOC_ROOT_DIR}/include ENV JEMALLOC_INCLUDE_DIR)

find_library(JeMalloc_LIBRARIES
NAMES jemalloc
HINTS ${JEMALLOC_ROOT_DIR}/lib ENV JEMALLOC_LIB_DIR)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(JeMalloc DEFAULT_MSG JeMalloc_LIBRARIES JeMalloc_INCLUDE_DIRS)

mark_as_advanced(
JeMalloc_LIBRARIES
JeMalloc_INCLUDE_DIRS)

if(JeMalloc_FOUND AND NOT (TARGET JeMalloc::JeMalloc))
add_library (JeMalloc::JeMalloc UNKNOWN IMPORTED)
set_target_properties(JeMalloc::JeMalloc
PROPERTIES
IMPORTED_LOCATION ${JeMalloc_LIBRARIES}
INTERFACE_INCLUDE_DIRECTORIES ${JeMalloc_INCLUDE_DIRS})
endif()

0 comments on commit 172e1bc

Please sign in to comment.