When i try to execute nim to run without a garbage collector with --gc:none
, i receive the following error message:
Error: system module needs 'initStackBottomWith'
Since i have found 0 references in the manual and nimc documentation, What does it mean and how do i solve it? I have tried putting everything inside a main proc and calling it like this:
proc main =
let noGarbage = 1 + 2
main()
(And i dont know what more i have to write to meet SO's quality standards)