about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2024-04-22 14:58:30 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2024-04-23 08:12:34 -0700
commite660db3233b27da48d52be2c1a0931fc2e304836 (patch)
tree97b94321c0af37a31fa2e2a2c0938dd1e355f4ef /doc
parent5e39a5c1129d6a772175418025f51b0c3022f971 (diff)
downloadnixlib-e660db3233b27da48d52be2c1a0931fc2e304836.tar
nixlib-e660db3233b27da48d52be2c1a0931fc2e304836.tar.gz
nixlib-e660db3233b27da48d52be2c1a0931fc2e304836.tar.bz2
nixlib-e660db3233b27da48d52be2c1a0931fc2e304836.tar.lz
nixlib-e660db3233b27da48d52be2c1a0931fc2e304836.tar.xz
nixlib-e660db3233b27da48d52be2c1a0931fc2e304836.tar.zst
nixlib-e660db3233b27da48d52be2c1a0931fc2e304836.zip
docs/cuda: remove last references to cudaPackages.autoAddDriverRunpath
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/cuda.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/cuda.section.md b/doc/languages-frameworks/cuda.section.md
index 9791018c7f5f..1b2005bb1edd 100644
--- a/doc/languages-frameworks/cuda.section.md
+++ b/doc/languages-frameworks/cuda.section.md
@@ -148,4 +148,4 @@ All new projects should use the CUDA redistributables available in [`cudaPackage
 | Find libraries | `configurePhase` | Missing dependency on a `dev` output | Add the missing dependency | The `dev` output typically contain CMake configuration files |
 | Find libraries | `buildPhase` or `patchelf` | Missing dependency on a `lib` or `static` output | Add the missing dependency | The `lib` or `static` output typically contain the libraries |
 
-In the scenario you are unable to run the resulting binary: this is arguably the most complicated as it could be any combination of the previous reasons. This type of failure typically occurs when a library attempts to load or open a library it depends on that it does not declare in its `DT_NEEDED` section. As a first step, ensure that dependencies are patched with [`cudaPackages.autoAddDriverRunpath`](https://search.nixos.org/packages?channel=unstable&type=packages&query=cudaPackages.autoAddDriverRunpath). Failing that, try running the application with [`nixGL`](https://github.com/guibou/nixGL) or a similar wrapper tool. If that works, it likely means that the application is attempting to load a library that is not in the `RPATH` or `RUNPATH` of the binary.
+In the scenario you are unable to run the resulting binary: this is arguably the most complicated as it could be any combination of the previous reasons. This type of failure typically occurs when a library attempts to load or open a library it depends on that it does not declare in its `DT_NEEDED` section. As a first step, ensure that dependencies are patched with [`autoAddDriverRunpath`](https://search.nixos.org/packages?channel=unstable&type=packages&query=autoAddDriverRunpath). Failing that, try running the application with [`nixGL`](https://github.com/guibou/nixGL) or a similar wrapper tool. If that works, it likely means that the application is attempting to load a library that is not in the `RPATH` or `RUNPATH` of the binary.