禁用 gc 时出错

Error when i disable gc

当我尝试在 --gc:none 没有垃圾收集器的情况下将 nim 执行到 运行 时,我收到以下错误消息:

Error: system module needs 'initStackBottomWith'

因为我在手册和 nimc 文档中找到了 0 个引用,这是什么意思,我该如何解决?我试过把所有东西都放在主过程中并像这样调用它:

proc main =
  let noGarbage = 1 + 2

main()

(而且我不知道我还需要写什么才能满足 SO 的质量标准)

这个bug已经解决了here