在 Ubuntu 11.10 上构建的 Haskell 程序无法在 Ubuntu 10.04 上运行
除了当前的 Windows 二进制文件之外,我还试图为我的程序的用户提供一些 Linux 二进制文件,因此我安装了 Ubuntu 11.10(因为 11.04 上的 haskell-platform 软件包仍然是 2010 版本)。然而,当我尝试在 Ubuntu 10.04 上运行生成的二进制文件时,我收到一条消息,指出它找不到 libgmp.so.10。检查 /usr/lib 发现 10.04 带有 libgmp.so.3,而 11.10 带有 libgmp.so.10。因此,GHC 似乎是动态链接到 libgmp,而不是静态链接,我认为这是默认的。
有什么方法可以告诉 GHC 在二进制文件中静态包含 libgmp 吗?如果没有,是否有其他不需要用户安装不同版本的 libgmp 的解决方案?
I'm trying to provide the users of my program with some Linux binaries in addition to the current Windows ones, so I installed Ubuntu 11.10 (since the haskell-platform package on 11.04 is still the 2010 version). When I try to run the resulting binary on Ubuntu 10.04, however, I get the message that it cannot find libgmp.so.10. Checking /usr/lib reveals that 10.04 comes with libgmp.so.3 whereas 11.10 has libgmp.so.10. It would appear therefore that GHC is linking to libgmp dynamically rather than statically, which I thought was the default.
Is there any way to tell GHC to statically include libgmp in the binary? If not, is there some other solution that does not require the user to install a different version of libgmp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
事实证明,为了静态链接二进制文件,-static 标志是不够的。相反,使用:
使用这个,我的二进制文件在两个版本的 Ubuntu 上都能正确运行。
It turns out that in order to statically link the binary the -static flag is not sufficient. Instead, use:
Using this, my binaries ran correctly on both versions of Ubuntu.
通常,旧的 libgmp 软件包也可用;也就是说,让您的程序依赖于 libgmp3c2 包,而不是通用的 libgmp 或 libgmp10。这通常可以通过使用早期版本的 GHC 或 gmp lib 进行编译来实现(例如安装 libgmp3-dev 而不是 libgmp10-dev)。
Often, the old libgmp packages are available as well; that is, make your program depend on the libgmp3c2 package instead of a generic libgmp or libgmp10. This can often be achieved by compiling with an earlier version of GHC or the gmp lib (e.g. install libgmp3-dev instead of libgmp10-dev).
您可以使用 ghc 选项
-static
来静态链接库。You have the ghc option
-static
to link statically against the libraries.