(05-22-2014, 09:57 PM)PureTryOut Wrote: I've had this problem before on Ubuntu 14.04.
I found out I had a corrupt link to the correct file, so by removing it and linking it again I fixed it.
Not sure where the file itself is though, I couldn't find it anymore.
Try the following in the terminal:
Code:
# rm /usr/lib/x86_64-linux-gnu/libGL.so
# whereis libGL.so
# ln -s /output/of/previous/command.so /usr/lib/x86_64-linux-gnu/libGL.so
This should work. A soft link should be enough, if not try the same as above but without the "-s".
Thank you. That did the trick.
Code:
# /usr/lib/x86_64-linux-gnu $ ls -l | grep libGL
lrwxrwxrwx 1 root root 16 Feb 13 2012 libGLEW.so -> libGLEW.so.1.7.0
lrwxrwxrwx 1 root root 16 May 20 19:55 libGLEW.so.1.7 -> libGLEW.so.1.7.0
-rw-r--r-- 1 root root 449480 Feb 13 2012 libGLEW.so.1.7.0
lrwxrwxrwx 1 root root 14 Oct 22 2013 libGL.so -> libGL.so.1.2.0
-rw-r--r-- 1 root root 901120 Sep 19 2013 libGLU.a
lrwxrwxrwx 1 root root 15 Sep 19 2013 libGLU.so -> libGLU.so.1.3.1
lrwxrwxrwx 1 root root 15 May 20 19:55 libGLU.so.1 -> libGLU.so.1.3.1
-rw-r--r-- 1 root root 449144 Sep 19 2013 libGLU.so.1.3.1
# /usr/lib/x86_64-linux-gnu $ rm libGL.so
# /usr/lib/x86_64-linux-gnu $ sudo rm libGL.so
#s /usr/lib/x86_64-linux-gnu $ whereis libGL.so
libGL: /usr/lib/libGL.la /usr/lib/libGL.so
# /usr/lib/x86_64-linux-gnu $ ln -s /usr/lib/libGL.so libGL.soOh I think the referenced libGL.1.2.0 is the deprecated version and there appears to be a 'newer' libGL.so which needs to be linked/updated. Am I reading that right?
Thanks. Dolphin-emu built and installed clean as can be.
