Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
db11370d
Commit
db11370d
authored
May 21, 2014
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#244 skip jemalloc build if it is not in the third party directory
parent
16ca3d13
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
27 deletions
+26
-27
cmake_modules/TokuThirdParty.cmake
cmake_modules/TokuThirdParty.cmake
+26
-27
No files found.
cmake_modules/TokuThirdParty.cmake
View file @
db11370d
...
...
@@ -3,35 +3,34 @@ include(ExternalProject)
if
(
NOT DEFINED LIBJEMALLOC
)
## add jemalloc with an external project
set
(
JEMALLOC_SOURCE_DIR
"
${
TokuDB_SOURCE_DIR
}
/third_party/jemalloc"
CACHE FILEPATH
"Where to find jemalloc sources."
)
if
(
NOT EXISTS
"
${
JEMALLOC_SOURCE_DIR
}
/configure"
)
message
(
FATAL_ERROR
"Can't find jemalloc sources. Please check them out to
${
JEMALLOC_SOURCE_DIR
}
or modify JEMALLOC_SOURCE_DIR."
)
endif
()
set
(
jemalloc_configure_opts
"CC=
${
CMAKE_C_COMPILER
}
"
"--with-jemalloc-prefix="
"--with-private-namespace=tokudb_jemalloc_internal_"
"--enable-cc-silence"
)
option
(
JEMALLOC_DEBUG
"Build jemalloc with --enable-debug."
OFF
)
if
(
JEMALLOC_DEBUG
)
list
(
APPEND jemalloc_configure_opts --enable-debug
)
endif
()
ExternalProject_Add
(
build_jemalloc
PREFIX jemalloc
SOURCE_DIR
"
${
JEMALLOC_SOURCE_DIR
}
"
CONFIGURE_COMMAND
"
${
JEMALLOC_SOURCE_DIR
}
/configure"
${
jemalloc_configure_opts
}
"--prefix=
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/jemalloc"
)
if
(
EXISTS
"
${
JEMALLOC_SOURCE_DIR
}
/configure"
)
set
(
jemalloc_configure_opts
"CC=
${
CMAKE_C_COMPILER
}
"
"--with-jemalloc-prefix="
"--with-private-namespace=tokudb_jemalloc_internal_"
"--enable-cc-silence"
)
option
(
JEMALLOC_DEBUG
"Build jemalloc with --enable-debug."
OFF
)
if
(
JEMALLOC_DEBUG
)
list
(
APPEND jemalloc_configure_opts --enable-debug
)
endif
()
ExternalProject_Add
(
build_jemalloc
PREFIX jemalloc
SOURCE_DIR
"
${
JEMALLOC_SOURCE_DIR
}
"
CONFIGURE_COMMAND
"
${
JEMALLOC_SOURCE_DIR
}
/configure"
${
jemalloc_configure_opts
}
"--prefix=
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/jemalloc"
)
add_library
(
jemalloc STATIC IMPORTED GLOBAL
)
set_target_properties
(
jemalloc PROPERTIES IMPORTED_LOCATION
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/jemalloc/lib/libjemalloc_pic.a"
)
add_dependencies
(
jemalloc build_jemalloc
)
add_library
(
jemalloc_nopic STATIC IMPORTED GLOBAL
)
set_target_properties
(
jemalloc_nopic PROPERTIES IMPORTED_LOCATION
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/jemalloc/lib/libjemalloc.a"
)
add_dependencies
(
jemalloc_nopic build_jemalloc
)
add_library
(
jemalloc STATIC IMPORTED GLOBAL
)
set_target_properties
(
jemalloc PROPERTIES IMPORTED_LOCATION
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/jemalloc/lib/libjemalloc_pic.a"
)
add_dependencies
(
jemalloc build_jemalloc
)
add_library
(
jemalloc_nopic STATIC IMPORTED GLOBAL
)
set_target_properties
(
jemalloc_nopic PROPERTIES IMPORTED_LOCATION
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/jemalloc/lib/libjemalloc.a"
)
add_dependencies
(
jemalloc_nopic build_jemalloc
)
# detect when we are being built as a subproject
if
(
NOT DEFINED MYSQL_PROJECT_NAME_DOCSTRING
)
install
(
DIRECTORY
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/jemalloc/lib"
DESTINATION .
COMPONENT tokukv_libs_extra
)
# detect when we are being built as a subproject
if
(
NOT DEFINED MYSQL_PROJECT_NAME_DOCSTRING
)
install
(
DIRECTORY
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/jemalloc/lib"
DESTINATION .
COMPONENT tokukv_libs_extra
)
endif
()
endif
()
endif
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment