Created
September 25, 2014 12:37
-
-
Save Constellation/39e907b67edda9ca6778 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/usr/bin/zsh | |
| # -*- coding: utf-8 -*- | |
| echo "module" | |
| cd mod | |
| rm -rf build | |
| mkdir build | |
| cd build | |
| ../configure | |
| make -j | |
| insmod gdev.ko | |
| sh gdev.sh | |
| cd ../../ | |
| echo "libgdev" | |
| cd lib | |
| rm -rf build | |
| mkdir build | |
| cd build | |
| ../configure | |
| make -j | |
| make install | |
| cd ../../ | |
| echo "libucuda" | |
| cd cuda | |
| rm -rf build | |
| cd build | |
| ../configure --disable-runtime | |
| make -j | |
| make install | |
| cd ../../ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment