1

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?

MR7
  • 11
  • 1
  • 2
  • 1
    answered here https://stackoverflow.com/questions/50564999/lib64-libc-so-6-version-glibc-2-14-not-found-why-am-i-getting-this-error – Ericgit Jul 17 '20 at 03:31

1 Answers1

3

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
Employed Russian
  • 199,314
  • 34
  • 295
  • 362