简体   繁体   中英

Error: /lib64/libc.so.6: version `GLIBC_2.14' not found

I am facing with the following error when i try to run a program on centos 6.

/lib64/libc.so.6: version `GLIBC_2.14' not found

I used ldd --version to find out what is the current version of glibc :

ldd (GNU libc) 2.17

which is higher than 2.14 and consequently, I should not face with this error. what should i do to resolve this error?

According to distrowatch , CentOS 6.10 shipped with GLIBC-2.12.

I used ldd --version

ldd is highly unreliable for anything (it will lie to you).

What matters is what version of /lib64/libc.so.6 you have. You can find out by running it, like so:

/lib64/libc.so.6

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM