将自定义对象文件与 Cabal 链接

发布于 2024-11-03 16:12:51 字数 202 浏览 1 评论 0原文

在自定义 cabal 挂钩中,我生成了要传递给链接器的目标文件 (*.o)。我该如何惯用地做到这一点?

解决方案 唐·斯图尔特的回答是正确的。目前我执行以下操作:

$ runhaskell Setup.lhs build --ld-options="PATHS TO .o FILES"

In a custom cabal hook I generated object files (*.o) which I want to pass to the linker. How do I do this idiomatically?

Solution
Don Stewart's answer goes in the right direction. Currently I do the following:

$ runhaskell Setup.lhs build --ld-options="PATHS TO .o FILES"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

茶底世界 2024-11-10 16:12:51

根据 Cabal 文档 对于 UserHooks,看起来您需要通过指定额外的 构建标志,将您的 .o 文件添加到 buildFlags 为 ld 。


顺便说一句,您应该意识到生成自定义 .o 文件是非常不寻常的,并且可能会使您的构建变得脆弱。 Cabal 无法自行生成这些 .o 文件是否有特殊原因?

According to the Cabal documentation for UserHooks, it looks like you'll need to add a buildHook, by specifying additional build flags, that add your .o files to the buildFlags for ld.


As an aside, you should be aware that generating custom .o files is highly unusual, and likely to make your build fragile. Is there a particular reason why Cabal is unable to generate these .o files itself?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文