Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BlenderPhi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
raas
BlenderPhi
Commits
a8d4c1f8
Commit
a8d4c1f8
authored
Jun 19, 2011
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
cmake: add find jemalloc module
parent
56c0f690
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+4
-6
4 additions, 6 deletions
CMakeLists.txt
build_files/cmake/Modules/FindJeMalloc.cmake
+67
-0
67 additions, 0 deletions
build_files/cmake/Modules/FindJeMalloc.cmake
with
71 additions
and
6 deletions
CMakeLists.txt
+
4
−
6
View file @
a8d4c1f8
...
@@ -406,12 +406,10 @@ if(UNIX AND NOT APPLE)
...
@@ -406,12 +406,10 @@ if(UNIX AND NOT APPLE)
endif
()
endif
()
if
(
WITH_MEM_JEMALLOC
)
if
(
WITH_MEM_JEMALLOC
)
set
(
JEMALLOC /usr
)
find_package
(
JeMalloc
)
set
(
JEMALLOC_LIBRARIES jemalloc CACHE STRING
"JeMalloc library"
)
if
(
NOT JEMALLOC_FOUND
)
set
(
JEMALLOC_LIBPATH
${
JEMALLOC
}
/lib CACHE FILEPATH
"JeMalloc library path"
)
set
(
WITH_MEM_JEMALLOC OFF
)
# no use for this yet.
endif
()
# set(JEMALLOC_INCLUDE_DIR ${JEMALLOC}/include CACHE FILEPATH "JeMalloc include path")
unset
(
JEMALLOC
)
endif
()
endif
()
# OpenSuse needs lutil, ArchLinux not, for now keep, can avoid by using --as-needed
# OpenSuse needs lutil, ArchLinux not, for now keep, can avoid by using --as-needed
...
...
This diff is collapsed.
Click to expand it.
build_files/cmake/Modules/FindJeMalloc.cmake
0 → 100644
+
67
−
0
View file @
a8d4c1f8
# - Find JeMalloc library
# Find the native JeMalloc includes and library
# This module defines
# JEMALLOC_INCLUDE_DIRS, where to find jemalloc.h, Set when
# JEMALLOC_INCLUDE_DIR is found.
# JEMALLOC_LIBRARIES, libraries to link against to use JeMalloc.
# JEMALLOC_ROOT_DIR, The base directory to search for JeMalloc.
# This can also be an environment variable.
# JEMALLOC_FOUND, If false, do not try to use JeMalloc.
#
# also defined, but not for general use are
# JEMALLOC_LIBRARY, where to find the JeMalloc library.
#=============================================================================
# Copyright 2002-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distribute this file outside of CMake, substitute the full
# License text for the above reference.)
# If JEMALLOC_ROOT_DIR was defined in the environment, use it.
IF
(
NOT JEMALLOC_ROOT_DIR AND NOT $ENV{JEMALLOC_ROOT_DIR} STREQUAL
""
)
SET
(
JEMALLOC_ROOT_DIR $ENV{JEMALLOC_ROOT_DIR}
)
ENDIF
()
SET
(
_jemalloc_SEARCH_DIRS
${
JEMALLOC_ROOT_DIR
}
/usr/local
/sw
# Fink
/opt/local
# DarwinPorts
/opt/csw
# Blastwave
)
FIND_PATH
(
JEMALLOC_INCLUDE_DIR jemalloc.h
HINTS
${
_jemalloc_SEARCH_DIRS
}
PATH_SUFFIXES
include/jemalloc
)
FIND_LIBRARY
(
JEMALLOC_LIBRARY
NAMES
"jemalloc"
HINTS
${
_jemalloc_SEARCH_DIRS
}
PATH_SUFFIXES lib64 lib
)
# handle the QUIETLY and REQUIRED arguments and set JEMALLOC_FOUND to TRUE if
# all listed variables are TRUE
INCLUDE
(
FindPackageHandleStandardArgs
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
JeMalloc DEFAULT_MSG
JEMALLOC_LIBRARY JEMALLOC_INCLUDE_DIR
)
IF
(
JEMALLOC_FOUND
)
SET
(
JEMALLOC_LIBRARIES
${
JEMALLOC_LIBRARY
}
)
SET
(
JEMALLOC_INCLUDE_DIRS
${
JEMALLOC_INCLUDE_DIR
}
)
ENDIF
(
JEMALLOC_FOUND
)
MARK_AS_ADVANCED
(
JEMALLOC_INCLUDE_DIR
JEMALLOC_LIBRARY
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment