diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-07-15 17:58:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 17:58:47 +0200 |
commit | af3d2d8ad90c31161c34f0d4f82cd0ac4a9b3d00 (patch) | |
tree | 24e40815489abb750b4a9c6ca6e46bea7c8f94dc /changelog.md | |
parent | 8c6dd2b9a9157c0e0bd822d8a80d1014fc87ecd7 (diff) | |
download | Nim-af3d2d8ad90c31161c34f0d4f82cd0ac4a9b3d00.tar.gz |
added `nimAllocPagesViaMalloc` switch (#18490)
* added switch * alloc.nim needs page aligned memory blocks
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index bc64e9579..d44f28b94 100644 --- a/changelog.md +++ b/changelog.md @@ -391,6 +391,9 @@ - The `gc:orc` algorithm was refined so that custom container types can participate in the cycle collection process. +- On embedded devices `malloc` can now be used instead of `mmap` via `-d:nimAllocPagesViaMalloc`. + This is only supported for `--gc:orc` or `--gc:arc`. + ## Compiler changes |