找不到/usr/local/lib 中的库 [英] Libraries in /usr/local/lib not found

查看:166
本文介绍了找不到/usr/local/lib 中的库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用名为 ohNet 的框架构建应用程序.构建框架后,可以通过make install安装框架.默认情况下,这些库安装在 /usr/local/[lib|include] 文件夹中.好的.

我正在使用 Eclipse 进行开发.为了使用这个库,我必须设置库的包含路径(在本例中为 usr/local/include/ohNet),设置链接器搜索路径 (-L)(/usr/local/lib/ohNet) 和特定的库 (-l)(在这种情况下,我选择了一个名为 libohNet.so 的库,它在这个文件夹中.当我在 Eclipse 中构建项目时它工作正常,但是如果我尝试运行该程序,我会遇到以下消息:

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

我已经仔细检查过了,文件 libohNet.so 就在这个目录中!找不到这个文件是什么原因?

我在谷歌上搜索并找到了一些帖子,说将库安装到 /usr/local/lib 而不是 /usr/lib 是有问题的a href="http://lonesysadmin.net/2013/02/22/error-while-loading-shared-libraries-cannot-open-shared-object-file/" rel="noreferrer">见这里 ...我是否必须在 eclipse 中配置一些额外的设置才能使 ld 识别此路径中的库?有什么办法解决这个问题?

问候

解决方案

这是运行时错误,而不是构建错误.设置 -L 标志对运行时链接器没有任何作用.您需要做的是告诉运行时加载程序也在/usr/local/lib 中查找库.您可以通过两种方式做到这一点.首先是在LD_LIBRARY_PATH环境变量中添加路径:

<前>导出 LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"

二是更新运行时链接器的配置文件.这可以发生在/etc/ld.so.conf 文件中,通过放置以下行:

<前>/usr/本地/lib

在该文件的某处,或者通过在包含新路径的/etc/ld.so.conf.d/目录中创建新的 *.conf 文件.例如:

<前>/etc/ld.so.conf.d/99local.conf

只要:

<前>/usr/本地/lib

在里面.这是执行此操作的推荐方法,因为它允许您将自定义库路径与系统设置的路径分开.(99"前缀是为了确保文件与那里的其他文件相比最后加载,这样它就不会抢占可能包含相同库的系统路径.)

在/etc中修改/创建文件后,需要运行:

<前>配置文件

作为 root 使更改生效.(此命令更新/etc/ld.so.cache 文件,这是运行时链接程序使用的实际文件.)

二进制文件还有另一种在运行时查找所需库的方法.您实际上可以将库路径硬编码到可执行文件本身中.这是通过设置所谓的rpath"来实现的.这是一个链接器选项,必须从 gcc(或 g++)传递给链接器,因此必须使用 -Wl 选项.链接器选项是 -rpath=PATH.所以你需要把它添加到你的链接标志中:

<前>-Wl,-rpath=/usr/local/lib

不过,我不建议在您的情况下使用此方法.当您将库与可执行文件(可能带有安装程序)、相对 rpath(使用 rpath $ORIGIN 功能)或绝对路径(用于安装在/opt,例如)然后用于在运行时查找那些捆绑的库.

I am building an application using a framework called ohNet. After building the framework, there is the possibility to install the framework via make install. By default the libraries are installed inside the /usr/local/[lib|include] folders. ok.

I am using eclipse for development. In order to use this libraries I have to set the include path to the library (in this case usr/local/include/ohNet), set the Linker search path (-L)(/usr/local/lib/ohNet) and specific libraries (-l) (in this case i choose a library called libohNet.so which is in this folder. When I build the project in eclipse it works fine, however if i try to run the programm i am faced with the following message:

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

I've double checked this, and the file libohNet.so is in this directory! What's the reason that this file cannot be found?

I searched on google and found some posts, saying that it is problematic that libraries are getting installed into /usr/local/lib instead of /usr/lib see here ... Do I have to configure some additional settings in eclipse to make ld recognize libraries in this path? What's the solution for this?

regards

解决方案

This is a runtime error, not a build error. Setting the -L flag does nothing for the runtime linker. What you need to do is to tell the runtime loader to also look in /usr/local/lib for libraries. You can do that in two ways. The first is to add the path to the LD_LIBRARY_PATH environment variable:

export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"

The second is to update the configuration file of the runtime linker. This can happen either in the /etc/ld.so.conf file, by putting the line:

/usr/local/lib

somewhere in that file, or by creating a new *.conf file in the /etc/ld.so.conf.d/ directory that contains the new path. For example:

/etc/ld.so.conf.d/99local.conf

with just:

/usr/local/lib

in it. This is the recommended way of doing this, as it allows you to keep your custom library paths separate from paths set by the system. (The "99" prefix is there to make sure the file is loaded last compared to other files there, so that it won't preempt system paths that could contain the same libraries.)

After you modify/create the file in /etc, you need to run:

ldconfig

as root for the change to take effect. (This command updates the /etc/ld.so.cache file, which is the actual file used by the runtime linker.)

There's also another way for a binary to find needed libraries at runtime. You can actually hard-code library paths into the executable itself. This is accomplished by setting a so called "rpath". This is a linker option and must be passed from gcc (or g++) to the linker, so the -Wl option has to be used. The linker option is -rpath=PATH. So you would need to add this to your link flags:

-Wl,-rpath=/usr/local/lib

I don't recommend this for your case though. An rpath is useful when you're shipping libraries together with your executable (maybe with an installer), and a relative rpath (using the rpath $ORIGIN feature) or absolute one (for when you install in /opt, for example) is then used to find those bundled libs at runtime.

这篇关于找不到/usr/local/lib 中的库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆