Updated Hunting crashes: The ultimate guide (markdown => rest)

This commit is contained in:
Andreas Rumpf 2017-02-01 07:48:46 +01:00
parent 1a6c77bede
commit 4cb37d459d
1 changed files with 3 additions and 3 deletions

View File

@ -28,9 +28,9 @@ Test different compiler options
``-d:release`` vs debug mode is the obvious choice, but the Nim GC, allocator and standard library have many more checks you can should enable:
-d:useSysAssert enables assertions in the system.nim, especially in Nim's allocator.
-d:useGcAssert enables assertions in Nim's GC.
-d:nimBurnFree overwrite deallocated memory with 0xff bytes so that "access after free" triggers a segfault.
| -d:useSysAssert enables assertions in the system.nim, especially in Nim's allocator.
| -d:useGcAssert enables assertions in Nim's GC.
| -d:nimBurnFree overwrite deallocated memory with 0xff bytes so that "access after free" triggers a segfault.
Edit lib/system/mmdisp.nim and gc.nim
=====================================