作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于 ghci
,我可以限制 ghci 可以使用的内存
$ ghci +RTS -M10m -RTS
$ ghc -rtsopts a.hs
$ ./a +RTS -M10m
runghc a.hs
执行此操作?我尝试了几种方法,例如
runghc a.hs +RTS -M10m
,但它们似乎都不起作用。我可以限制内存的唯一选择是
$ export GHCRTS='-M10m'
$ runghc a.hs
runghc
.
-- a.hs
f x = f (f x)
main = print $ seq (f 0) 0
top
命令和另一个用于执行代码。如果执行停止说“堆用尽”,我得出结论
-M[number]m
正在工作中。如果执行继续并使用大量内存,我将终止该进程并得出结论它没有成功。
最佳答案
使用 GHCRTS=... runghc ...
如chi说是唯一的办法。因为方式runghc
解释它的命令行,+RTS
被解释为 runghc
的 RTS 选项本身(如果在末尾)或作为程序名称(如果在开头)。它永远不会到达运行时。您可以使用 --RTS +RTS ...
强制将其传递给程序。但随后它被视为程序参数,运行时仍然看不到它。
为了调查这个问题,我为 ghc
编写了一个包装 shell 脚本。跟踪其参数,并将其传递给 runghc
与 -f
选项。
创建文件ghc-wrapper
包含:
#!/bin/sh -x
exec ghc "$@"
-x
选项告诉
/bin/sh
跟踪每一行。与
runghc
一起使用:
$ runghc -f ./ghc-wrapper Hello.hs
+ exec ghc -ignore-dot-ghci -x hs -e :set prog "Hello.hs" -e :main [] Hello.hs
Hello, World!
$ runghc -f ./ghc-wrapper Hello.hs +RTS -s
+ exec ghc -ignore-dot-ghci -x hs -e :set prog "Hello.hs" -e :main [] Hello.hs
Hello, World!
114,016 bytes allocated in the heap # runghc's heap, not Hello's
...
$ runghc -f ./ghc-wrapper Hello.hs --RTS +RTS -s
+ exec ghc -ignore-dot-ghci -x hs -e :set prog "Hello.hs" -e :main ["+RTS","-s"] Hello.hs
Hello, World!
$ runghc -f ./ghc-wrapper -- +RTS -s -RTS Hello.hs
+ exec ghc -ignore-dot-ghci -e :set prog "+RTS" -e :main ["-s","-RTS","Hello.hs"] +RTS
+RTS:1:55:
Not in scope: `main'
Perhaps you meant `min' (imported from Prelude)
runghc
要执行的是:
$ ghc -ignore-dot-ghci -x hs +RTS -s -RTS -e ':set prog "Hello.hs"' -e ':main []' Hello.hs
Hello, World!
80,654,256 bytes allocated in the heap
...
runghc
不处理
+RTS
特别。
关于haskell - 如何将 RTS 选项传递给 runghc?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29339643/
我是一名优秀的程序员,十分优秀!