Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
pkg-scripts/cuda-10.0.130-0.build.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
106 lines (81 sloc)
3.15 KB
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
#! /bin/bash | |
PKG=cuda | |
MAJOR=10.0 | |
MINOR=130 | |
VERSION=${MAJOR}.${MINOR} | |
BUILD=0 | |
DRIVERVERSION=410.48 | |
# get versions combination and file URL from | |
# https://developer.nvidia.com/cuda-downloads?target_os=Linux | |
# Linux - x86_64 - any - any - runfile (local) | |
# | |
# the cuda toolkit comes bundled with a (kernel) driver. Here we only install the toolkit. | |
# It seems to function with other driver versions, but this can't be relied on. | |
# Additonal we insall cudnn7 which comes in variants for each cuda version. | |
CUDNNFILE=cudnn-$MAJOR-linux-x64-v7.5.1.10.tgz | |
# | |
# this file can only be downloaded with a developer login. Dowload drom | |
# https://developer.nvidia.com/cudnn | |
# and put the file into /package/cuda/src | |
# Note: | |
# https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html | |
# "The CUDA Development Tools are only supported on some specific distributions of Linux. These are listed in the CUDA Toolkit release notes." | |
PREFIX=/pkg/$PKG-$VERSION-$BUILD | |
if [ -n "$TESTING" ]; then PREFIX=/dev/shm/$PKG-$VERSION-$BUILD ; fi | |
set -xe | |
umask 022 | |
BUILD_TMPDIR=/dev/shm/$PKG-$VERSION-$BUILD.build.tmp | |
test -d $BUILD_TMPDIR && rm -rf $BUILD_TMPDIR | |
mkdir -p $BUILD_TMPDIR/home | |
export TMPDIR=$BUILD_TMPDIR | |
export HOME=$BUILD_TMPDIR/home | |
exec </dev/null | |
mkdir -p $PREFIX | |
cat >$PREFIX/profile <<-EOF | |
PATH=$PREFIX/bin:\$PATH | |
export LD_LIBRARY_PATH=$PREFIX/lib64\${LD_LIBRARY_PATH:+:\$LD_LIBRARY_PATH} | |
if [ -d $PREFIX/.compatlibs ]; then export LD_LIBRARY_PATH=$PREFIX/.compatlibs\${LD_LIBRARY_PATH:+:\$LD_LIBRARY_PATH} ; fi | |
EOF | |
. $PREFIX/profile | |
export MAKEFLAGS="-j $(nproc)" | |
BUILDDIR=$PREFIX/build | |
mkdir -p $BUILDDIR | |
cd $BUILDDIR | |
# URL from https://developer.nvidia.com/cuda-downloads?target_os=Linux | |
# Linux - x86_64 - any - any - runfile (local) | |
INSTALLFILE=cuda_${VERSION}_${DRIVERVERSION}_linux | |
URL=https://developer.nvidia.com/compute/cuda/$MAJOR/Prod/local_installers/$INSTALLFILE | |
if [ ! -e ${INSTALLFILE} ]; then | |
wget $URL | |
fi | |
# We have the first-level of "Makeself tool" generated script/archive. | |
# We just extract to tmp and dont run the content | |
test -d "cuda" || bash ${INSTALLFILE} --nox11 --target cuda --noexec | |
cd cuda | |
# we dont run the installer. | |
# perl ./cuda-installer.pl --silent --toolkit --toolkitpath=${PREFIX} --verbose | |
# would do all kind of stupid things and the call in run-files | |
# ./cuda-linux.9.1.85-23083092.run --nox11 -- --noprompt --prefix="/dev/shm/x" --manifest="/dev/shm/x/bin/.uninstall_manifest_do_not_delete.txt" | |
# | |
# instead do it ourself | |
cd run_files | |
script=cuda-linux.*.run | |
# again, cuda-linux-SOMETHING.run is a "Makeself tool" generated script. | |
# We just extract to tmp and dont run the content | |
test -d cuda-linux || bash $script --nox11 --target cuda-linux --noexec | |
cd cuda-linux | |
# we dont run the installer | |
# perl ./install-linux.pl --prefix=$PREFIX --noprompt | |
# would do all kind of stupid things like deleting evertyhing in $PREFIX | |
# the main thing it does is this: | |
find * -type d -prune -exec cp -a {} $PREFIX/ \; | |
# cudNN, just unpack | |
# | |
cd $BUILDDIR | |
test -e $CUDNNFILE || cp /package/cuda/src/$CUDNNFILE . | |
test -d cudnn || mkdir cudnn | |
cd cudnn | |
tar xvf ../$CUDNNFILE | |
cp cuda/include/cudnn.h $PREFIX/include/ | |
cp cuda/lib64/libcudnn* $PREFIX/lib64/ | |
exit |