Assume I have the following local gcc, g++ version:
$ gcc -v
$ g++ -v
gcc version 6.3.1
I don't understanding the relation and meaning of the following compared to my compiler version:
What is this referring to?
/usr/lib64/libstdc++.so.6
Trying to run a binary and I get this error, what is GLIBCXX_3.4.20
referring to? why is the number starting with 3?
/lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found
What is all this?
$ strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBCXX_3.4.11
GLIBCXX_3.4.12
GLIBCXX_3.4.13
GLIBCXX_3.4.14
GLIBCXX_3.4.15
GLIBCXX_3.4.16
GLIBCXX_3.4.17
GLIBCXX_3.4.18
GLIBCXX_3.4.19
How about the ldd version?
ldd --version
ldd (GNU libc) 2.17
I can't link all these version numbers together.