Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在具有 512M RAM 的旧 freebsd 机器上安装了 GHC-7.4。一切都很好!但是GHCI一旦启动就占用了太多的RAM。
任何建议表示赞赏!
ghci +RTS -M100M -c30如果要将堆大小限制为 100MB 并在堆使用率增加到 30% 时使用压缩,则可以使用。
ghci +RTS -M100M -c30
有关运行时标志的更多信息,请参阅RTS选项。
或者,使用编译器而不是解释器。