问题描述
我正在编译一些在 Debian Linux 系统上使用 libcurl 的代码.我的开发机器正在运行 Debian 5,但我希望二进制文件也可以在旧的 Debian 4 系统上使用.
I'm compiling some code which uses libcurl on a Debian Linux system. My dev machine is running Debian 5 but I want the binary to be usable on older Debian 4 systems too.
我发现如果我指定 -lcurl 它将链接到 libcurl.so.4 但 Debian 4 系统只有 libcurl.so.3
I find that if I specify -lcurl it will link to libcurl.so.4 but Debian 4 systems only have libcurl.so.3
有什么方法可以告诉 GCC 链接到 libcurl.so.3(在 Debian 4 和 5 中都存在)或 libcurl.so,以便它使用任何可用的版本?
Is there some way I can tell GCC to link to either libcurl.so.3 (which exists in both Debian 4 and 5) or just libcurl.so so it will use whatever version is available ?
推荐答案
您可以在链接器命令行上传递实际的 .so 文件而不是 -l,它应该可以做您想做的事情.
You can pass the actual .so file instead of -l on the linker command line, and it ought to do what you want.
这篇关于如何链接到 GCC 中特定版本的共享库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!