我正在构建简单的脚本,runhaskell
并尝试使用FastString
from ghc-7.10.2
。简单地:
import FastString
main = putStrLn "Hello SO"
运行它会runhaskell Main.hs
导致错误:
Main.hs:1:8:
Could not find module ‘FastString’
It is a member of the hidden package ‘ghc-7.10.2’.
Use -v to see a list of the files searched for.
我知道我可以使用它来构建它cabal
并指定ghc
为依赖项,但我真的需要使用runhaskell
.
如何使用 取消隐藏 ghc 库runhaskell
?