Results 1 to 2 of 2
Hi Experts
I am running an c++ application in opensuse 10.2 and get the following error:-
bjam: /lib/libc.so.6: version `GLIBC_2.7' not found (required by bjam).
Can anybody help me in ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-04-2013 #1Just Joined!
- Join Date
- Jan 2012
- Posts
- 9
bjam: /lib/libc.so.6: version `GLIBC_2.7' not found (required by bjam)
Hi Experts
I am running an c++ application in opensuse 10.2 and get the following error:-
bjam: /lib/libc.so.6: version `GLIBC_2.7' not found (required by bjam).
Can anybody help me in this regard.
Thanks & Regards
Vikas
- 03-05-2013 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,144
This is the Linux version of "DLL Hell" - shared library versionitis. You might be able to install glibc v2.7 (I think you have 2.6) as well, but it is not for the faint of heart! You will have to find the appropriate version of glibc (2.7) and install that either from source or from an RPM that won't break your system. If installed from source, then you can install it to /usr/local instead of /usr, and then point your LD_LIBRARY_PATH to /usr/local/lib and/or /usr/local/lib64. That would be the safest approach since it would not affect normal software that is expecting to find the older glibc to run.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote
