g++ 4.4“加载共享库时出错”

发布于 2024-09-11 05:25:31 字数 1203 浏览 2 评论 0原文

我正在关注有关与 g++ 链接的静态和动态库的 C++ Cookbook 教程。我可以很好地构建二进制文件,但是当我运行它时,我收到错误

./hellobeatles: 加载共享库时出错: libjohnpaul.so: 无法打开共享对象文件: 没有这样的文件或目录

我使用了命令 : g++ -o hellobeatles hellobeatles.cpp -L ../johnpaul/ -L ../georgeringo/ -ljohnpaul -lgeorgeringo

如果我明确列出路径,则程序可以正常构建并运行良好 : g++ -o hellobeatles hellobeatles.cpp ../johnpaul/libjohnpaul.so ../georgeringo/libgeorgeringo.so

我在第一个命令中错误地链接到了库吗?或者我需要修改一些配置设置吗?

如果重要的话,我正在 VirtualBox 中运行 Ubuntu 9.10 来宾虚拟机,这是 -v 使用内置规格。 目标:x86_64-linux-gnu 配置为:../src/configure -v --with-pkgversion='Ubuntu 4.4.1-4ubuntu9' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs - -enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib -- libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable- nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu 线程模型:posix gcc版本4.4.1(Ubuntu 4.4.1-4ubuntu9)

I'm following the C++ Cookbook tutorial on static and dynamic library linking with g++. I can build the binary fine, but when I run it I get the error

./hellobeatles: error while loading shared libraries: libjohnpaul.so: cannot open shared object file: No such file or directory

I used the command
: g++ -o hellobeatles hellobeatles.cpp -L ../johnpaul/ -L ../georgeringo/ -ljohnpaul -lgeorgeringo

The program builds and runs fine if I explicitly list the path like
: g++ -o hellobeatles hellobeatles.cpp ../johnpaul/libjohnpaul.so ../georgeringo/libgeorgeringo.so

Am I linking to the libaries incorrectly in the first command? Or is there some configuration setting I need to muck with?

I'm running an Ubuntu 9.10 guest vm in VirtualBox if that matters, and here's the -v
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.1-4ubuntu9' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu9)

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

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

发布评论

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

评论(1

爱的故事 2024-09-18 05:25:31

动态链接器期望在 /usr/lib/lib/usr/local/lib 以及可能的其他一些位置找到共享库地方。它肯定不会../johnpaul/中寻找它们。

如果打算将库安装到全局位置,则只需将它们安装在那里即可。

否则,您必须告诉动态链接器在哪里可以找到它们。

更好的方法是将它们添加到编码到可执行文件中的 RPATH 中:

 g++ -o hellobeatles hellobeatles.cpp \
     -L ../johnpaul/ -L ../georgeringo/ -ljohnpaul -lgeorgeringo \
     -Wl,-rpath=/path/to/johnpaul:/path/to/georgeringo

替代(且不太优选)的方法是:

export LD_LIBRARY_PATH=/path/to/johnpaul:/path/to/georgeringo

The dynamic linker expects to find shared libraries in /usr/lib, /lib, /usr/local/lib, and possibly a few other places. It will certainly not look for them in ../johnpaul/.

If the libraries are intended to be installed into a global location, then just install them there.

Otherwise, you must tell the dynamic linker where to find them.

A better approach is to add them to RPATH encoded into the executable:

 g++ -o hellobeatles hellobeatles.cpp \
     -L ../johnpaul/ -L ../georgeringo/ -ljohnpaul -lgeorgeringo \
     -Wl,-rpath=/path/to/johnpaul:/path/to/georgeringo

Alternative (and less preferred) approach is to:

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