diff options
author | 2024-12-05 12:05:45 +0100 | |
---|---|---|
committer | 2024-12-05 18:01:17 +0000 | |
commit | 76ad930669a5078e69470a7aed8728f23daba43a (patch) | |
tree | 0f770c316c01d3c701cf7afc15de839f9829dc03 /media-libs | |
parent | sci-libs/vtk: 9.3.1 update tests (diff) | |
download | gentoo-76ad930669a5078e69470a7aed8728f23daba43a.tar.gz gentoo-76ad930669a5078e69470a7aed8728f23daba43a.tar.bz2 gentoo-76ad930669a5078e69470a7aed8728f23daba43a.zip |
media-libs/opencv: explicitly pass NVCC_CCBIN to fix <=cuda-12.4.1
Closes: https://bugs.gentoo.org/945333
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/opencv/opencv-4.10.0.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media-libs/opencv/opencv-4.10.0.ebuild b/media-libs/opencv/opencv-4.10.0.ebuild index 34bfb33194a0..0fddb4ef92d5 100644 --- a/media-libs/opencv/opencv-4.10.0.ebuild +++ b/media-libs/opencv/opencv-4.10.0.ebuild @@ -381,7 +381,7 @@ cuda_get_host_compiler() { ebegin "testing ${NVCC_CCBIN_default} (default)" - while ! nvcc - -x cu <<<"int main(){}" &>/dev/null; do + while ! nvcc -v -ccbin "${NVCC_CCBIN}" - -x cu <<<"int main(){}" &>> "${T}/cuda_get_host_compiler.log" ; do eend 1 while true; do |