linux下项目开发加载动态库:ldconfig与 /etc/ld.so.conf详解程序员

场景:自己开发一个项目,程序里包含一些自定义动态库。运行,需要加载这些动态库。

假如这些库在/pro/output/lib/下面,可执行程序在/pro/output/bin/下面。

那么,我们需要:

 [[email protected] ~]# vi /etc/ld.so.conf 
include ld.so.conf.d/*.conf 
/pro/output/lib   <==这一行是新增的。

刷新动态库:

[[email protected] ~]# cd /pro/output/bin
[[email protected] ~]# ldconfig
# 画面上不会显示任何信息,正常。

 

程序启动,就会正常加载了。

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/2640.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论