mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-05 15:09:31 +03:00
Update readme.md
This commit is contained in:
parent
82684042be
commit
6e1ca96a49
1 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ mimalloc (pronounced "me-malloc")
|
||||||
is a general purpose allocator with excellent [performance](#performance) characteristics.
|
is a general purpose allocator with excellent [performance](#performance) characteristics.
|
||||||
Initially developed by Daan Leijen for the run-time systems of the
|
Initially developed by Daan Leijen for the run-time systems of the
|
||||||
[Koka](https://github.com/koka-lang/koka) and [Lean](https://github.com/leanprover/lean) languages.
|
[Koka](https://github.com/koka-lang/koka) and [Lean](https://github.com/leanprover/lean) languages.
|
||||||
Latest release:`v1.6.0` (2020-02-09).
|
Latest release:`v1.6.1` (2020-02-17).
|
||||||
|
|
||||||
It is a drop-in replacement for `malloc` and can be used in other programs
|
It is a drop-in replacement for `malloc` and can be used in other programs
|
||||||
without code changes, for example, on dynamically linked ELF-based systems (Linux, BSD, etc.) you can use it as:
|
without code changes, for example, on dynamically linked ELF-based systems (Linux, BSD, etc.) you can use it as:
|
||||||
|
@ -57,6 +57,7 @@ Enjoy!
|
||||||
|
|
||||||
### Releases
|
### Releases
|
||||||
|
|
||||||
|
* 2020-02-17, `v1.6.1`: stable release 1.6: minor updates (build with clang-cl, fix alignment issue for small objects).
|
||||||
* 2020-02-09, `v1.6.0`: stable release 1.6: fixed potential memory leak, improved overriding
|
* 2020-02-09, `v1.6.0`: stable release 1.6: fixed potential memory leak, improved overriding
|
||||||
and thread local support on FreeBSD, NetBSD, DragonFly, and macOSX. New byte-precise
|
and thread local support on FreeBSD, NetBSD, DragonFly, and macOSX. New byte-precise
|
||||||
heap block overflow detection in debug mode (besides the double-free detection and free-list
|
heap block overflow detection in debug mode (besides the double-free detection and free-list
|
||||||
|
@ -275,8 +276,7 @@ resolved to the _mimalloc_ library.
|
||||||
Note that certain security restrictions may apply when doing this from
|
Note that certain security restrictions may apply when doing this from
|
||||||
the [shell](https://stackoverflow.com/questions/43941322/dyld-insert-libraries-ignored-when-calling-application-through-bash).
|
the [shell](https://stackoverflow.com/questions/43941322/dyld-insert-libraries-ignored-when-calling-application-through-bash).
|
||||||
|
|
||||||
Note: unfortunately, at this time, dynamic overriding on macOS seems broken but it is
|
(Note: macOS support for dynamic overriding is recent, please report any issues.)
|
||||||
actively worked on to fix this (see issue [`#50`](https://github.com/microsoft/mimalloc/issues/50)).
|
|
||||||
|
|
||||||
### Override on Windows
|
### Override on Windows
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue