Files

34 lines
869 B
Bash

# shellcheck shell=bash
# Patch all dynamically linked, ELF files with the CUDA driver (libcuda.so)
# coming from the cuda_compat package by adding it to the RUNPATH.
echo "Sourcing auto-add-cuda-compat-runpath-hook"
# shellcheck disable=SC2157
if [[ -z "@libcudaPath@" ]]; then
echo "auto-add-cuda-compat-runpath-hook: cuda_compat not available, skipping hook"
return
fi
addCudaCompatRunpath() {
local libPath
local origRpath
if [[ $# -eq 0 ]]; then
nixLog "no library path provided" >&2
exit 1
elif [[ $# -gt 1 ]]; then
nixLog "too many arguments" >&2
exit 1
elif [[ $1 == "" ]]; then
nixLog "empty library path" >&2
exit 1
else
libPath="$1"
fi
origRpath="$(patchelf --print-rpath "$libPath")"
patchelf --set-rpath "@libcudaPath@:$origRpath" "$libPath"
}
postFixupHooks+=("autoFixElfFiles addCudaCompatRunpath")