# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # shellcheck disable=SC2317 EAPI=8 PYTHON_COMPAT=( python3_{10..13} ) inherit check-reqs toolchain-funcs inherit python-r1 DRIVER_PV="570.86.10" GCC_MAX_VER="14" CLANG_MAX_VER="19" DESCRIPTION="NVIDIA CUDA Toolkit (compiler and friends)" HOMEPAGE="https://developer.nvidia.com/cuda-zone" SRC_URI=" amd64? ( https://developer.download.nvidia.com/compute/cuda/${PV}/local_installers/cuda_${PV}_${DRIVER_PV}_linux.run ) arm64? ( https://developer.download.nvidia.com/compute/cuda/${PV}/local_installers/cuda_${PV}_${DRIVER_PV}_linux_sbsa.run ) " S="${WORKDIR}" LICENSE="NVIDIA-CUDA" SLOT="0/${PV}" # UNSLOTTED # SLOT="${PV}" # SLOTTED KEYWORDS="-* ~amd64 ~arm64 ~amd64-linux ~arm64-linux" IUSE="debugger examples profiler rdma sanitizer" RESTRICT="bindist mirror strip test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" # since CUDA 11, the bundled toolkit driver (== ${DRIVER_PV}) and the # actual required minimum driver version are different. RDEPEND=" || ( ${ED} ${_DESTDIR}" } dopcfile() { [[ $# -eq 0 ]] && return dodir "${CUDA_PATH}/pkgconfig" cat > "${ED}${CUDA_PATH}/pkgconfig/${1}-${2}.pc" <<-EOF || die "dopcfile" cudaroot=${EPREFIX}${CUDA_PATH} libdir=\${cudaroot}/targets/${narch}-linux/lib${4} includedir=\${cudaroot}/targets/${narch}-linux/include Name: ${1} Description: ${3} Version: ${2} Libs: -L\${libdir} -l${1} Cflags: -I\${includedir} EOF } pushd builds >/dev/null || die fix_executable_bit=( cuda_cupti/extras/CUPTI/samples/pc_sampling_utility/pc_sampling_utility_helper.h cuda_cupti/extras/CUPTI/samples/pc_sampling_continuous/libpc_sampling_continuous.pl libcufile/gds/tools/run_gdsio.cfg ) if use amd64; then fix_executable_bit+=( cuda_opencl/targets/*/include/CL/cl.hpp libcufile/targets/*/lib/libcufile_rdma_static.a libcufile/targets/*/lib/libcufile_static.a ) fi chmod -x "${fix_executable_bit[@]}" || die "failed chmod" popd >/dev/null || die ebegin "parsing manifest" "${S}/manifests/cuda_"*.xml # {{{ "${EPYTHON}" "${FILESDIR}/parse_manifest.py" "${S}/manifests/cuda_"*".xml" &> "${T}/install.sh" \ || die "failed to parse manifest" # shellcheck disable=SC1091 source "${T}/install.sh" || die "failed to source install script" eend $? # }}} if use debugger; then if [[ -d "${ED}/${CUDA_PATH}/extras/Debugger/lib64" ]]; then rmdir "${ED}/${CUDA_PATH}/extras/Debugger/lib64" || die "remove debugger lib64" fi find "${ED}/${CUDA_PATH}/bin" -maxdepth 1 -name "cuda-gdb-*-tui" -print0 | while read -rd $'\0' tui_name; do impl="$(basename "${tui_name}" | cut -d '-' -f 3 | tr '.' '_')" if ! has "${impl}" "${PYTHON_COMPAT[@]}" || ! use "python_targets_${impl}"; then rm "${tui_name}" || die "tui-name rm ${tui_name}" sed -e "/$(basename "${tui_name}")\"/d" -i "${ED}/${CUDA_PATH}/bin/cuda-gdb" || die "tui_name sed" fi done fi # remove rdma libs (unless USE=rdma) if ! use rdma; then rm "${ED}/${CUDA_PATH}/targets/${narch}-linux/lib/libcufile_rdma"* || die "failed to remove rdma files" fi # Add include and lib symlinks dosym "targets/${narch}-linux/include" "${CUDA_PATH}/include" dosym "targets/${narch}-linux/lib" "${CUDA_PATH}/lib64" find "${ED}/${CUDA_PATH}" -empty -delete || die local ldpathextradirs pathextradirs use debugger && ldpathextradirs+=":${EPREFIX}${CUDA_PATH}/extras/Debugger/lib64" use profiler && ldpathextradirs+=":${EPREFIX}${CUDA_PATH}/extras/CUPTI/lib64" local revord=$(( 999999 - $(printf "%02d%02d%02d" "$(ver_cut 1)" "$(ver_cut 2)" "$(ver_cut 3)") )) newenvd - "99cuda${revord}" <<-EOF PATH=${EPREFIX}${CUDA_PATH}/bin${pathextradirs} PKG_CONFIG_PATH=${EPREFIX}${CUDA_PATH}/pkgconfig LDPATH=${EPREFIX}${CUDA_PATH}/lib64:${EPREFIX}${CUDA_PATH}/nvvm/lib64${ldpathextradirs} EOF # CUDA prepackages libraries, don't revdep-build on them insinto /etc/revdep-rebuild newins - "80${PN}${revord}" <<-EOF SEARCH_DIRS_MASK="${EPREFIX}${CUDA_PATH}" EOF # https://bugs.gentoo.org/926116 insinto /etc/sandbox.d newins - "80${PN}" <<-EOF SANDBOX_PREDICT="/proc/self/task" EOF # TODO drop and replace with runtime detection similar to what python does {{{ # ATTENTION: change requires revbump, see link below for supported GCC # versions # https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#system-requirements local cuda_supported_gcc=( 8.5 9.5 10 11 12 13 "${GCC_MAX_VER}" ) sed \ -e "s:CUDA_SUPPORTED_GCC:${cuda_supported_gcc[*]}:g" \ "${FILESDIR}"/cuda-config.in > "${ED}/${CUDA_PATH}/bin/cuda-config" || die fperms +x "${CUDA_PATH}/bin/cuda-config" # }}} # skip til cudnn has been changed #950207 # if [[ "${SLOT}" != "${PV}" ]]; then # dosym "${CUDA_PATH}" "${CUDA_PATH%"-${PV}"}" # fi fowners -R root:root "${CUDA_PATH}" } pkg_postinst_check() { if tc-is-gcc && ver_test "$(gcc-major-version)" -gt "${GCC_MAX_VER}"; then ewarn ewarn "gcc > ${GCC_MAX_VER} will not work with CUDA" ewarn ewarn "Append --ccbin= pointing to a gcc bindir to the nvcc compiler flags (NVCCFLAGS)" ewarn "or set NVCC_CCBIN to the same bindir." ewarn " NVCCFLAGS=\"--ccbin=$(eval echo "${EPREFIX}/usr/*-linux-gnu/gcc-bin/${GCC_MAX_VER}")\"" ewarn " NVCC_CCBIN=$(eval echo "${EPREFIX}/usr/*-linux-gnu/gcc-bin/${GCC_MAX_VER}")" ewarn fi if tc-is-clang && ver_test "$(clang-major-version)" -gt "${CLANG_MAX_VER}"; then ewarn ewarn "clang > ${CLANG_MAX_VER} will not work with CUDA" ewarn ewarn "Append --ccbin= pointing to a clang bindir to the nvcc compiler flags (NVCCFLAGS)" ewarn "or set NVCC_CCBIN to the same bindir." ewarn " NVCCFLAGS=\"--ccbin=$(eval echo "${EPREFIX}/usr/lib/llvm/*/bin${CLANG_MAX_VER}")\"" ewarn " NVCC_CCBIN=$(eval echo "${EPREFIX}/usr/lib/llvm/*/bin${CLANG_MAX_VER}")" ewarn fi } pkg_postinst() { if [[ ${MERGE_TYPE} != binary ]]; then pkg_postinst_check fi if use profiler; then einfo einfo "nvidia-drivers restricts access to performance counters." einfo "You'll need to run profiling tools (nvprof) " einfo "using sudo (needs cap SYS_ADMIN) or add the following line to " einfo "a modprobe configuration file " einfo "(e.g. /etc/modprobe.d/nvidia-prof.conf): " einfo einfo "options nvidia NVreg_RestrictProfilingToAdminUsers=0" einfo fi }