使用从源代码编译的 GHC API
我想在客户端程序中使用 GHC API GHC 的修改版本。获取 GHC 源很容易 并构建并安装修改后的 GHC,但安装 修改后的 GHC 会导致所有旧的(Cabal)依赖关系被破坏。
因此,我无法使用 GHC API,因为 ghc -v 表示:
包 ghc-7.0.3-... 由于缺少或递归依赖项而无法使用:...
有关如何继续的任何线索?
谢谢!
兰吉特。
I'd like to, within a client program, use the GHC API from a
modified version of GHC. Its easy enough to get the GHC sources
and build and install the modified GHC, but installing the
modified GHC causes all older (Cabal) dependencies to break.
Consequently, I cannot use the GHC API as ghc -v says:
package ghc-7.0.3-... is unusable due to missing or recursive dependencies:...
Any clues on how to proceed?
Thanks!,
Ranjit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须首先构建 GHC 的自定义版本,然后安装您需要的所有软件包。这样,一切都将与您的自定义 GHC 相关联,您会没事的。
You must build a custom version of GHC first, then install all the packages you need. That way, everything will be linked against your custom GHC, and you will be fine.