New package: mimalloc-2.1.2

Closes: #35283
This commit is contained in:
Peter Wang 2023-07-31 18:34:56 +10:00 committed by Leah Neukirchen
parent 9e0a8177f5
commit 260e5f0433
4 changed files with 58 additions and 0 deletions

View file

@ -4323,3 +4323,4 @@ libjxl_threads.so.0.8 libjxl-0.8.2_1
libtext-engine-0.1.so.0 text-engine-0.1.1_1
libvmaf.so.1 vmaf-2.3.1_1
liblc3.so.1 liblc3-1.0.3_1
libmimalloc.so.2 mimalloc-2.1.2_1

1
srcpkgs/mimalloc-devel Symbolic link
View file

@ -0,0 +1 @@
mimalloc

View file

@ -0,0 +1,20 @@
make sure the library name is the same no matter whether is built as
secure or not
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -343,15 +343,6 @@ else()
endif()
set(mi_basename "mimalloc")
-if(MI_SECURE)
- set(mi_basename "${mi_basename}-secure")
-endif()
-if(MI_TRACK_VALGRIND)
- set(mi_basename "${mi_basename}-valgrind")
-endif()
-if(MI_TRACK_ASAN)
- set(mi_basename "${mi_basename}-asan")
-endif()
string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LC)
if(NOT(CMAKE_BUILD_TYPE_LC MATCHES "^(release|relwithdebinfo|minsizerel|none)$"))
set(mi_basename "${mi_basename}-${CMAKE_BUILD_TYPE_LC}") #append build type (e.g. -debug) if not a release version

36
srcpkgs/mimalloc/template Normal file
View file

@ -0,0 +1,36 @@
# Template file for 'mimalloc'
pkgname=mimalloc
version=2.1.2
revision=1
build_style=cmake
configure_args="$(vopt_bool secure MI_SECURE)"
short_desc="General purpose allocator with excellent performance characteristics"
maintainer="Peter Wang <novalazy@gmail.com>"
license="MIT"
homepage="https://github.com/microsoft/mimalloc"
distfiles="https://github.com/microsoft/mimalloc/archive/v${version}.tar.gz"
checksum=2b1bff6f717f9725c70bf8d79e4786da13de8a270059e4ba0bdd262ae7be46eb
build_options="secure"
build_options_default="secure"
desc_option_secure="Build mimalloc in secure mode"
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
makedepends+=" libatomic-devel"
fi
post_install() {
vlicense LICENSE
}
mimalloc-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/cmake
vmove usr/lib/libmimalloc.so
vmove usr/lib/mimalloc-${version%.*}
vmove usr/lib/pkgconfig
}
}