Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -3127,6 +3127,7 @@
"mimalloc"
],
"versions": [
"3.3.2-1",
"3.2.7-1",
"3.1.5-1"
]
Expand Down
8 changes: 4 additions & 4 deletions subprojects/mimalloc.wrap
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[wrap-file]
directory = mimalloc-3.2.7
source_url = https://github.com/microsoft/mimalloc/archive/refs/tags/v3.2.7.tar.gz
source_filename = mimalloc-3.2.7.tar.gz
source_hash = 33621bea902711639b8f83128e64685ffc8224a65443625530747603a2d8726d
directory = mimalloc-3.3.2
source_url = https://github.com/microsoft/mimalloc/archive/refs/tags/v3.3.2.tar.gz
source_filename = mimalloc-3.3.2.tar.gz
source_hash = ca02384e007f46950598500dfaebde5ff9948c1d231f5a81b058799afa64bbbb
patch_directory = mimalloc

[provide]
Expand Down
4 changes: 2 additions & 2 deletions subprojects/packagefiles/mimalloc/meson.build
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
project(
'mimalloc',
'c',
meson_version: '>=0.56.0',

Check notice on line 4 in subprojects/packagefiles/mimalloc/meson.build

View workflow job for this annotation

GitHub Actions / Ubuntu (x86_64)

Minimum Meson version is 0.56.0

0.56.0: oldest version supported by WrapDB
license: 'MIT',
version: '3.2.7',
version: '3.3.2',
)

mi_sources = []
Expand All @@ -13,6 +13,7 @@
mi_shared_args = []

mi_sources += files(
'src/prim/prim.c',
'src/alloc-aligned.c',
'src/alloc-posix.c',
'src/alloc.c',
Expand All @@ -26,7 +27,6 @@
'src/os.c',
'src/page-map.c',
'src/page.c',
'src/prim/prim.c',
'src/random.c',
'src/stats.c',
'src/theap.c',
Expand Down
Loading