I am trying to upgrade glibcxx on my CentOS 6.7 machine. I did the steps as given here.
Now, when I do:
strings /opt/google/chrome/lib/libstdc++.so.6 | grep GLIBC
I have GLIBCXX_3.4 to GLIBCXX_3.4.22 listed.
To use this file in my Syantaxnet build, I created a symbolic link:
ln -s /opt/google/chrome/lib/libstdc++.so.6 /usr/lib64/libstdc++.so.6
But I get an error:
ln: creating symbolic link `/usr/lib64/libstdc++.so.6': File exists
EDIT1:
I thought the error was because of the same file names and renamed /opt/google/chrome/lib/libstdc++.so.6 to libstdc++.so.6_new. The command still fails.
Can someone help me figure this out? Also, is this a solution for the error:
/usr/local/bin/bazel: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.14' not found (required by /usr/local/bin/bazel)
/usr/local/bin/bazel: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /usr/local/bin/bazel)