[TOC]

概述

问题一

1
ImportError: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29‘ not found

问题解决:https://blog.csdn.net/m0_37201243/article/details/123641552

问题解决:https://blog.csdn.net/p942005405/article/details/123540761

问题解决:https://blog.csdn.net/hongguo87/article/details/118378891

1
解决libc.so.6: version `GLIBC_2.18' not found问题

出现问题:

1
2
3
4
5
checking LD_LIBRARY_PATH variable... contains current directory
configure: error:
*** LD_LIBRARY_PATH shouldn't contain the current directory when
*** building glibc. Please change the environment variable
*** and run configure again.

解决方法:

问题分析:
LD_LIBRARY_PATH不能包含当前目录,请修改环境变量并重新执行configure

解决方法:

1
2
3
4
5
6
[root@localhost opt]# echo $LD_LIBRARY_PATH
:/usr/local/lib
[root@localhost opt]# export LD_LIBRARY_PATH=
[root@localhost opt]# echo $LD_LIBRARY_PATH

[root@localhost opt]# ./glibc-2.14/configure
1
2
3
strings: '/lib/x86_64-linux-gnu/libm.so.6': No such file

https://www.codegrepper.com/code-examples/shell/%2Flib%2Fx86_64-linux-gnu%2Flibm.so.6%3A+version+%60glibc_2.27%27+not+found

https://www.cnblogs.com/liujiaxin2018/p/13196207.html

https://www.codeleading.com/article/47216152277/

http://www.trustcomputing.com/bbs/viewthread.php?tid=1808