Solution: `GLIBC_2.xxx' not found”

本文介绍了解决应用程序因glibc版本不匹配导致的问题的方法。包括通过环境变量临时切换到所需的glibc版本,如何查找引起问题的具体函数,以及如何链接到旧版本的符号等技巧。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Bypass:

Using the temp environment variable:

env LD_LIBRARY_PATH=/path/to/correct/libc-xxx.so  SomeProblemAPP appArgs

or

LD_LIBRARY_PATH=/path/to/correct/libc-xxx.so  SomeProblemAPP appArgs

Find which function cause the problem:

Check Glibc version:

objdump -p app

Find Glibc function:

nm app |grep GLIBC_2.xx
#or
objdump -T app |grep GLIBC_2.xx
#or
readelf -s app |grep GLIBC_2.xx

Linking to Older Versioned Symbols (glibc)

Using the version script feature of ld :
Suppose the odd function is realpath, then add below line into the source file:

__asm__(".symver realpath,realpath@GLIBC_2.2.5");

so the source file will look like:

#include <limits.h>
#include <stdlib.h>
#include <stdio.h>

__asm__(".symver realpath,realpath@GLIBC_2.2.5");
int main()
{
   char* unresolved = "/lib64";
   char  resolved[PATH_MAX+1];

   if(!realpath(unresolved, resolved))
      { return 1; }

   printf("%s\n", resolved);

   return 0;
}

ref:
http://ftp.gnu.org/old-gnu/Manuals/ld-2.9.1/html_node/ld_25.html
http://www.trevorpounds.com/blog/?tag=symbol-versioning
http://www.trevorpounds.com/blog/?p=103

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值