05-10-2012, 12:07 PM
It looks like you need to install proprietary video card drivers. Without OpenGL you won't be able to build and run Dolphin or any game that requires hardware 3D, native or wine.
(05-10-2012, 12:07 PM)ShadowFlash Wrote: [ -> ]It looks like you need to install proprietary video card drivers. Without OpenGL you won't be able to build and run Dolphin or any game that requires hardware 3D, native or wine.That doesn't have anything to do with GLU not being found.
mv /usr/lib/x86_64-linux-gnu/libGL.so /usr/lib/x86_64-linux-gnu/libGL.so.bakln -s /usr/lib/libGL.so /usr/lib/x86_64-linux-gnu/libGL.somake && make install(07-14-2012, 04:23 AM)helios747 Wrote: [ -> ]Hi.also sorry for the bump but thanks a lot for this
I know this is a very old thread but I felt a need to bump it and post a solution as this is the first hit on google for this kind of problem.
I had the same problem on Debian testing x64, and I solved it by symlinking the libGL.so from /usr/lib. The one in that x86_64-linux-gnu folder is fucked up. Dunno why. Maybe something to do with NVIDIA drivers?
ANYWAYS
First back up the original libGL (All commands are done as root/sudo)
Code:
mv /usr/lib/x86_64-linux-gnu/libGL.so /usr/lib/x86_64-linux-gnu/libGL.so.bak
symlink the libGL from /usr/lib
Code:
ln -s /usr/lib/libGL.so /usr/lib/x86_64-linux-gnu/libGL.so
Compiling should now work
Code:
make && make install
Sorry about the bump, but this solution could be invaluable to people stumbling across this via google.