Created
February 8, 2012 04:45
-
-
Save laurencedawson/1765505 to your computer and use it in GitHub Desktop.
Fix broken links cuda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install freeglut and libxi | |
sudo apt-get install freeglut3-dev libxi-dev | |
# Fix a missing link | |
sudo ln -s /usr/lib/libXmu.so.6 /usr/lib/libXmu.so | |
# Remove the dead link | |
sudo rm /usr/lib/libGL.so | |
# Add a new link in order to compile the OpenGL demos | |
sudo ln -s /usr/lib/libGL.so.285.05.33 /usr/lib/libGL.so |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment