mimalloc icon indicating copy to clipboard operation
mimalloc copied to clipboard

mimalloc is a compact general purpose allocator with excellent performance.

Results 266 mimalloc issues
Sort by recently updated
recently updated
newest added

When building with cmake 4 it throws an error on configuring mimalloc as it has minimum cmake versions set to 3.0 and version 4 has dropped support for compatability older...

I have compiled the mimalloc static library myself, using the v2.2.3 version branch. Here are my NDK cmake build settings: ``` SET ANDROID_NDK=D:\Android\SDK\ndk\25.1.8937393 SET CMAKE_PATH=cmake SET ANDROID_PLATFORM=android-24 SET ANDROID_TOOLCHAIN=clang .......

This is a patch set I used to build mimalloc on the xbox to get Cpython to build there. The following functions / types are unavailable: - `NTSTATUS` not available...

Hi, I'm using mimalloc 2.2.3 built through vcpkg on a C++ program running on Windows. I want to use mimalloc's per-thread stats to monitor my threads' memory consumption on a...

When you access the statistics, it seems that you have two options: either print the "global" statistics with `mi_stats_print_out` or alternatively, each thread can print _its own_ statistics. Neither option...

``` $ git clone https://github.com/microsoft/mimalloc.git $ cd mimalloc $ mkdir build $ cmake -DMI_BUILD_STATIC:BOOL=OFF .. $ make : [ 78%] Linking C executable mimalloc-test-api ld: library 'mimalloc-static' not found clang:...

Hey! Thanks for the great allocator, we're testing v3 and it is MUCH more better than v2. Wondering where can I read more about the difference? Any risks in using...

Rspack is using mimalloc for speeding up the memory allocation. It's is a tool for transforming and bundling basically JavaScript files. According to our test to resolve [this](https://github.com/web-infra-dev/rspack/issues/8976) issue, we...

Mark the padding bytes and mi_padding_t struct no access for all kinds of pages to improve asan accuracy(issue #1043)

After fixing infinite recursion in https://github.com/microsoft/mimalloc/pull/1057 I was able to launch a build with `MI_DEBUG_FULL` on Android and it's failing with such callstack: ``` abort (@abort:44) _mi_assert_fail (mimalloc/src/options.c:540) _mi_page_map_register (mimalloc/src/page-map.c:284)...