Issue
I'm using openCV in my project. When I've tested in Red Hat instance, I have exception " /lib64/libc.so.6: version `GLIBC_2.15' not found". So, how I can install glibc 2.15 in Red Hat? I fond rpm(not 2.15(I hope new version can help me)), but I need some dependencies. Can I install glibc from some repo?
thx!
Solution
Can I install glibc from some repo?
Not likely: distributions usually don't ever update the major/minor version of glibc from the one they originally shipped with, because the likelihood of breaking applications is too great.
You may have to build glibc-2.15, or better current glibc-2.24 from source and install it into non-default location. See this answer.
Answered By - Employed Russian Answer Checked By - Candace Johnson (WPSolving Volunteer)