系统相关
首页 > 系统相关> > 在Linux中使用LD_PRELOAD混合64位/ 32位环境

在Linux中使用LD_PRELOAD混合64位/ 32位环境

作者:互联网

我想设置LD_PRELOAD指向一个共享库,我可以运行64位或32位应用程序.很明显,共享库和可执行文件必须匹配bit-ness.

$LD_PRELOAD=/lib64/lib_init.so ./hello32
ERROR: ld.so: object '/lib64/lib_init.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored

其中hello32是32位应用程序.世界上有一些页面说我应该能够:

$LD_PRELOAD='/$LIB/lib_init.so' ./hello32
ERROR: ld.so: object '/$LIB/lib_init.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored

其中$LIB将自动在lib和lib64之间切换,具体取决于应用程序是32位还是64位.但显然这不起作用.

是否有一些技巧可以使这项工作? LD_PRELOAD_32,LD_PRELOAD_64?
谢谢!

解决方法:

通过指定库的完整路径,您不允许动态链接器根据二进制体系结构调整其搜索路径.仅定义库名称,让链接器为您选择正确的库.例如.:

$LD_PRELOAD=lib_init.so ./hello32

将在/ lib中搜索lib_init.so

$LD_PRELOAD=lib_init.so ./hello64

将在/ lib64中搜索

标签:32bit-64bit,ld-preload,linux
来源: https://codeday.me/bug/20190727/1555231.html