Dolphin, the GameCube and Wii emulator - Forums

Full Version: Compile error on Linux
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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.
I have th eFLGRX or whatever those drivers are already installed.
(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.
Hi.


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.

misterman

(07-14-2012, 04:23 AM)helios747 Wrote: [ -> ]Hi.


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.
also sorry for the bump but thanks a lot for this
Pages: 1 2