initial commit
A fast freepascal memory manager using Microsoft's state-of-the-art mimalloc
allocator.
Simply build using the Makefile, optionally specifying the compiler to use in the CC
environment variable.
make
Make sure the unit fpc_mimalloc
is the first unit included in your program, so that all other units allocate memory with this allocator.
uses fpc_mimalloc, SysUtils, ...;
The code in this repository is free and unencumbered software released into the public domain. The license of the mimalloc library can be found in the LICENSE file of the mimalloc submodule.