diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-12-17 17:37:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-17 17:37:50 +0100 |
commit | 83a736a34a1ebd4bc4d769429880ccb871403ba4 (patch) | |
tree | 1a45de64686622fe9932daafb5345fdd066cab48 /doc/nimc.rst | |
parent | 5848f0042c2d6a6dd39d9b8db747f36200c9f543 (diff) | |
download | Nim-83a736a34a1ebd4bc4d769429880ccb871403ba4.tar.gz |
ARC: cycle detector (#12823)
* first implementation of the =trace and =dispose hooks for the cycle collector * a cycle collector for ARC: progress * manual: the .acyclic pragma is a thing once again * gcbench: adaptations for --gc:arc * enable valgrind tests for the strutils tests * testament: better valgrind support * ARC refactoring: growable jumpstacks * ARC cycle detector: non-recursive algorithm * moved and renamed core/ files back to system/ * refactoring: --gc:arc vs --gc:orc since 'orc' is even more experimental and we want to ship --gc:arc soonish
Diffstat (limited to 'doc/nimc.rst')
-rw-r--r-- | doc/nimc.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/nimc.rst b/doc/nimc.rst index c59653b34..cc8d0875c 100644 --- a/doc/nimc.rst +++ b/doc/nimc.rst @@ -237,8 +237,8 @@ This uses the configuration defined in ``config\nim.cfg`` for ``lvm_gcc``. If nimcache already contains compiled code from a different compiler for the same project, add the ``-f`` flag to force all files to be recompiled. -The default compiler is defined at the top of ``config\nim.cfg``. Changing this setting -affects the compiler used by ``koch`` to (re)build Nim. +The default compiler is defined at the top of ``config\nim.cfg``. +Changing this setting affects the compiler used by ``koch`` to (re)build Nim. Cross compilation @@ -557,9 +557,9 @@ For example, to generate code for an `AVR`:idx: processor use this command:: For the ``standalone`` target one needs to provide a file ``panicoverride.nim``. See ``tests/manyloc/standalone/panicoverride.nim`` for an example -implementation. Additionally, users should specify the +implementation. Additionally, users should specify the amount of heap space to use with the ``-d:StandaloneHeapSize=<size>`` -command line switch. Note that the total heap size will be +command line switch. Note that the total heap size will be ``<size> * sizeof(float64)``. |