我面临关于glibc的以下错误。
./simulator: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by ./simulator)
我已经阅读了几个关于此错误的文档,我了解程序simulator
是使用更高版本的glibc
编译的,并且运行它的计算机的版本较低。
simulator
在Ubuntu 14.04计算机上使用glibc 2.19
编译。那么为什么我会收到GLIBC_2.14
错误?不应该是2.19错误吗?
答案 0 :(得分:14)
那我为什么会收到GLIBC_2.14错误?
因为您的程序依赖于具有该版本的符号,并且您在不提供该程序的系统上运行它。
不应该是2.19错误吗?
没有
引入新符号时,会获得分配给它的版本。通常该版本是尚未发布的 glibc版本,即如果当前发布的版本是2.13,则新符号将获得分配给它的版本2.14。
该版本使用此符号保留(除非稍后引入相同符号的新版本和不兼容版本)。
x86_64
GLIBC-2.19
具有以下版本符号:
$ objdump -T /lib/x86_64-linux-gnu/libc.so.6 | grep ' g ' | head
0000000000078110 g DF .text 0000000000000124 GLIBC_2.2.5 putwchar
0000000000096a70 g DF .text 0000000000000020 GLIBC_2.2.5 __strspn_c1
000000000010a2b0 g DF .text 0000000000000010 GLIBC_2.4 __gethostname_chk
0000000000096a90 g DF .text 000000000000001a GLIBC_2.2.5 __strspn_c2
0000000000110570 g DF .text 00000000000000a5 GLIBC_2.2.5 setrpcent
00000000000a7ba0 g DF .text 000000000000000a GLIBC_2.2.5 __wcstod_l
0000000000096ab0 g DF .text 0000000000000022 GLIBC_2.2.5 __strspn_c3
00000000000fa950 g DF .text 0000000000000021 GLIBC_2.3.2 epoll_create
000000000010a2c0 g DF .text 0000000000000010 GLIBC_2.4 __getdomainname_chk
00000000000fab60 g DF .text 0000000000000021 GLIBC_2.2.5 klogctl
....
也就是说,如果我链接了一个调用putwchar
的程序,我将需要至少版本2.2.5
,但如果我的程序也调用epoll_create
,那么我需要2.3.2
的最低版本。
您的程序会使用版本GLIBC_2.14
调用某个符号,很可能是这个符号:
0000000000091620 g iD .text 000000000000003d GLIBC_2.14 memcpy
您的程序已知不调用下面的任何符号(或者您将获得不同的所需版本):
$ objdump -T /lib/x86_64-linux-gnu/libc.so.6 | egrep 'GLIBC_2.1[5-9]'
000000000010ab30 g DF .text 0000000000000014 GLIBC_2.16 __ppoll_chk
00000000001087d0 w DF .text 000000000000003e GLIBC_2.17 clock_getcpuclockid
000000000010aaf0 g DF .text 0000000000000017 GLIBC_2.15 __fdelt_warn
000000000010aaf0 g DF .text 0000000000000017 GLIBC_2.15 __fdelt_chk
000000000003c6b0 g DF .text 00000000000000fc GLIBC_2.18 __cxa_thread_atexit_impl
00000000000fb070 g DF .text 0000000000000024 GLIBC_2.15 process_vm_writev
00000000000bd420 g DF .text 00000000000001ba GLIBC_2.15 scandirat
00000000000af970 g DF .text 0000000000000019 GLIBC_2.16 c16rtomb
00000000001088f0 w DF .text 0000000000000090 GLIBC_2.17 clock_nanosleep
00000000000af6e0 g DF .text 0000000000000282 GLIBC_2.16 mbrtoc16
00000000000a3c70 w DF .text 0000000000000230 GLIBC_2.16 mbrtoc32
0000000000000000 g DO *ABS* 0000000000000000 GLIBC_2.15 GLIBC_2.15
0000000000000000 g DO *ABS* 0000000000000000 GLIBC_2.16 GLIBC_2.16
0000000000000000 g DO *ABS* 0000000000000000 GLIBC_2.17 GLIBC_2.17
0000000000000000 g DO *ABS* 0000000000000000 GLIBC_2.18 GLIBC_2.18
00000000000b9f40 g DF .text 0000000000000042 GLIBC_2.16 timespec_get
0000000000083120 w DF .text 0000000000000009 GLIBC_2.16 aligned_alloc
0000000000108810 w DF .text 0000000000000025 GLIBC_2.17 clock_getres
0000000000108880 w DF .text 0000000000000064 GLIBC_2.17 clock_settime
00000000000f8240 w DF .text 0000000000000068 GLIBC_2.16 getauxval
00000000000e44f0 g DF .text 0000000000000015 GLIBC_2.15 posix_spawn
0000000000108840 w DF .text 000000000000003b GLIBC_2.17 clock_gettime
00000000000a3ea0 w DF .text 00000000000001ea GLIBC_2.16 c32rtomb
000000000003c0b0 w DF .text 000000000000001b GLIBC_2.17 secure_getenv
000000000010ab10 g DF .text 0000000000000014 GLIBC_2.16 __poll_chk
00000000000f8240 g DF .text 0000000000000068 GLIBC_2.16 __getauxval
00000000000fb040 g DF .text 0000000000000024 GLIBC_2.15 process_vm_readv
00000000000bd420 w DF .text 00000000000001ba GLIBC_2.15 scandirat64
00000000000e4510 g DF .text 0000000000000015 GLIBC_2.15 posix_spawnp
答案 1 :(得分:0)
如果其他所有方法均失败,则只需下载早期版本的BLAST。看来这些错误发生在较新的版本上。
安装ncbi-blast-2.8.1
而不是ncbi-blast-2.9.0
可以解决此问题。
答案 2 :(得分:0)
在ubuntu中使用pyinstaller生成构建时,我在Debian中遇到了同样的错误。 我通过在centos7中生成build解决了该错误。 建立工作正常。