Skip to content

Instantly share code, notes, and snippets.

@Constellation
Created September 25, 2014 12:37
Show Gist options
  • Select an option

  • Save Constellation/39e907b67edda9ca6778 to your computer and use it in GitHub Desktop.

Select an option

Save Constellation/39e907b67edda9ca6778 to your computer and use it in GitHub Desktop.
#!/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