MR7
MR7

Reputation: 11

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?

Upvotes: 1

Views: 6918

Answers (1)

Employed Russian
Employed Russian

Reputation: 213935

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

Upvotes: 3

Related Questions