(06-15-2014, 05:52 AM)tecfreak Wrote: /usr/lib/x86_64-linux-gnu/libGL.so may be a broken link or does not exist.
If it is a broken link, then just remove it
sudo rm /usr/lib/x86_64-linux-gnu/libGL.so
and crete a new one
sudo ln -s /usr/lib/x86_64-linux-gnu/libGL.so.1 /usr/lib/x86_64-linux-gnu/libGL.so
I have do it, and I still have de same problem.
I remove libGL.so :
Code:
sudo rm /usr/lib/x86_64-linux-gnu/libGL.soI create the new symbolic link :
Code:
sudo ln -s /usr/lib/x86_64-linux-gnu/libGL.so.1 /usr/lib/x86_64-linux-gnu/libGL.soI check if the symlink is okay :
Quote:ls /usr/lib/x86_64-linux-gnu/ | grep libGL
libGLEWmx.so.1.10
libGLEWmx.so.1.10.0
libGLEW.so.1.10
libGLEW.so.1.10.0
libGL.so
libGLU.a
libGLU.so
libGLU.so.1
libGLU.so.1.3.1
And I compile again :
Code:
morgan@morgan-laptop:~/dolphin/dolphin/Build$ make
[ 0%] Built target bdisasm
[ 0%] Built target lzo2
[ 0%] Built target sfml-network
[ 2%] Built target miniupnpc
[ 9%] Built target polarssl
[ 9%] Built target SOIL
[ 54%] Built target wx
[ 54%] Built target pch
[ 55%] Built target audiocommon
[ 58%] Built target common
[ 59%] Built target inputcommon
[ 61%] Built target videosoftware
[ 63%] Built target videoogl
[ 67%] Built target videocommon
[ 88%] Built target core
[ 91%] Built target discio
make[2]: *** Pas de règle pour fabriquer la cible « /usr/lib/x86_64-linux-gnu/libGL.so », nécessaire pour « Binaries/dolphin-emu ». Arrêt.
make[1]: *** [Source/Core/DolphinWX/CMakeFiles/dolphin-emu.dir/all] Erreur 2
make: *** [all] Erreur 2(06-15-2014, 09:39 AM)PureTryOut Wrote: I'm wondering, are you using a NVIDIA card? This problem seems to occur after driver installs...
Anyways what tecfreak said:
/usr/lib/x86_64-linux-gnu/libGL.so should be a link, which may indeed be broken.
You can also link it to /usr/lib/libGL.so, which should be the shown if you use whereis libGL.so in a terminal.
I prefer this one because I know for sure it's the right libGL.so.
Worse, I have ATI Radeon HD :'(
EDIT : @PureTryOut, you're right, I have created symlink with the path returned by whereis and it's work very well !
Thank you very much for your help guys
