有关编译时so库加载的内容:
/etc/ld.so.conf
此文件记录了编译时使用的动态链接库的路径,更直白的说就是配置so库的加载路径;
默认情况下,编译器只会使用/lib和/usr/lib这两个目录下的库文件,而通常通过源码包安装时,如果不指定—prefix会将库安装在/usr/local下,而又在文件/etc/ld.so.conf中没有添加路径/usr/local/lib这个路径,这样虽然安装了源码包,但是在使用仍然找不到相关的so库就会报错,也就是说系统不知道你安装了源码。
对于此情况有两种解决方法:
(1)在用源码安装时,用prefix指定安装路径为/usr/lib。这样的话也就不用配置PKG_CONFIG_PATH
(2)直接路径/usr/local/lib加入到文件/etc/ld.so.conf
在文件/etc/ld.so.conf中末尾直接添加:
/usr/local/lib
(这个方法给力!)
ldconfig
再来看看ldconfig这个程序,位于/sbin下,它的作用是将文件/etc/ld.so.conf列出的路径下的库文件缓存到/etc/ld.so.cache以供使用,因此当安装完一些库文件,或者修改/etc/ld.so.conf增加了库的新的搜索路径,需要运行一下ldconfig,使所有的库文件都被缓存到文件/etc/ld.so.cache中,如果没做,可能会找不到刚安装的库
PKG_CONFIG_PATH:
最后说下PKG_CONFIG_PATH这个环境变量,它是在安装了pkgconfig后出现的
The pkgconfig package contains tools for passing the include path and/or library paths to build tools during the make file execution.
pkg-config is a function that returns meta information for the specified library.
The default setting for PKG_CONFIG_PATH is /usr/lib/pkgconfig because of the prefix we use to install pkgconfig. You may add to PKG_CONFIG_PATH by exporting additional paths on your system where pkgconfig files are installed. Note that PKG_CONFIG_PATH is only needed when compiling packages, not during run-time.
我想看过这段说明后,你已经大概了解了它是做什么的吧。
其实pkg-config就是向configure程序提供系统信息的程序,比如软件的版本啦,库的版本啦,库的路径啦,等等
这些信息只是在编译其间使用。你可以 ls /usr/lib/pkgconfig 下,会看到许多的*.pc,用文本编辑器打开
会发现类似下面的信息:
prefix=/usr
exec_prefix=$
libdir=$/lib
includedir=$/include
glib_genmarshal=glib-genmarshal
gobject_query=gobject-query
glib_mkenums=glib-mkenums
Name: GLib
Description: C Utility Library
Version: 2.4.7
Libs: -L$ -lglib-2.0
Cflags: -I$/glib-2.0 -I$/glib-2.0/include
明白了吧,configure就是靠这些信息判断你的软件版本是否符合要求。并且得到这些东东所在的位置,要不去哪里找呀。
不用我说你也知道为什么会出现上面那些问题了吧。
所以要正确配置这个环境变量,我的配置是:
PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/local/lib/pkgconfig
作者:ccskyer
来源:CSDN
原文:https://blog.csdn.net/ccskyer/article/details/6092766
版权声明:本文为博主原创文章,转载请附上博文链接!