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)
source
share