elf 取路径_ELF 可执行程序在运行阶段寻找动态库的路径顺序

Linux上的ELF可执行程序依赖于ld.so动态库进行运行时链接。ld.so不仅自身是动态库,也可作为可执行程序执行。程序启动时,ld.so按照特定顺序查找动态库:首先检查LD_LIBRARY_PATH环境变量,接着使用/etc/ld.so.cache缓存,最后在默认路径/usr/lib和/lib中查找。如果在编译时使用了-static选项,指定的路径会优先被搜索。
摘要由CSDN通过智能技术生成

Linux 上 ELF 格式的可执行程序,在程序启动阶段,会加载  ld.so 这个动态库(比较奇妙的是,它也可以直接被执行,动态库/可执行程序 二合一?),并通过它来加载其它需要的动态库。

ld.so  manual page 中介绍了运行阶段寻找动态库的顺序 :

ld.so  loads  the shared libraries needed by a program, prepares the program to run, and then runs it.  Unless explicitly

specified via the -static option to ld during compilation, all Linux programs are incomplete and require further  linking

at run time.

The necessary shared libraries needed by the program are searched for in the following order

o      Using  the  environment  variable  LD_LIBRARY_PATH  (LD_AOUT_LIBRARY_PATH for a.out programs).  Except if the executable is a setuid/setgid binary, in which case it is ignored.

o      From the cache file /etc/ld.so.cache which contains a compiled list of candidate libraries previously found in the

augmented library path.

o      In the default path /usr/lib, and then /lib.

如果在链接阶段,通过 -static 选项指定了动态库搜索路径的话,那么这个路径会被优先选择

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值