我试图让cabal配置等同于使用ghc -threaded -O2
进行编译,然后使用my.exe +RTS -N4 -s
运行。目前我有
executable my.exe
ghc-options:
-O3
-threaded
-rtsopts
-with-rtsopts="-N4"
main-is: Main.hs
当我运行my.exe
时,它会给我unexpected RTS argument: -N4
答案 0 :(得分:4)
对于多个选项,请将整个字段放在引号中:
“ - with-rtsopts = -N4 -s”
或者,您可以单独添加每个选项:
- 附-rtsopts = -N 4
- 附-rtsopts = -s