Haskell cabal+hsc2hs
cabal可以使用hsc2hs创建hs文件吗? 如何?
我没有在手册、谷歌搜索或其他项目中找到答案(我对 gtk2hs 抱有希望,但事实证明它不使用 cabal)
Can cabal use hsc2hs to create hs files? How?
I didn't find an answer in the manuals, googling, nor in other projects (had my hopes up for gtk2hs but it turns out that it doesn't use cabal)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,cabal 知道,当您在 .cabal 文件中列出模块 Foo 并在磁盘上找到 Foo.hsc 时,它必须首先在该模块上运行 hsc2hs。
Cabal 透明地处理 .hsc 文件的存在。
Yes, cabal understands that when you list module Foo in your .cabal file, and it finds Foo.hsc on disk, that it must run hsc2hs on the module first.
Cabal transparently handles the existence of .hsc files.