Error disconnecting gc

When I try to run nim to start without garbage collector with --gc:none, I get the following error message:

Error: system module needs 'initStackBottomWith'

Since I found 0 links in the manual documentation and nimc, what does this mean and how to solve it? I tried putting everything inside the main proc and calling it like this:

proc main =
  let noGarbage = 1 + 2

main()

(And I don’t know what I need to write more to meet SO quality standards)

+4
source share
1 answer

This error has already been resolved here.

+1
source

All Articles