Changed markAndSweep to regions

This commit is contained in:
nocturn9x 2021-01-17 16:56:10 +01:00
parent fb34faac2d
commit 74d68871cb
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ The build tool calls the system's nim compiler to build JAPL. If you want to cus
Right now JAPL is in its very early stages and we've encountered a series of issues related to nim's garbage collection implementations. Some of them
seem to clash with JAPL's own memory management and cause random `NilAccessDefects` because the GC frees stuff that JAPL needs. If the test suite shows
weird crashes try changing the `gc` option to `boehm` (particularly recommended since it seems to cause very little interference with JAPL), `orc`~ or
`markAndSweep` to see if this mitigates the problem; this is a temporary solution until JAPL becomes fully independent from nim's runtime memory management.
`regions` to see if this mitigates the problem; this is a temporary solution until JAPL becomes fully independent from nim's runtime memory management.
### JAPL Debugging options