summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Zander <negril.nx+gentoo@gmail.com>2024-12-05 12:05:45 +0100
committerSam James <sam@gentoo.org>2024-12-05 18:01:17 +0000
commit76ad930669a5078e69470a7aed8728f23daba43a (patch)
tree0f770c316c01d3c701cf7afc15de839f9829dc03 /media-libs
parentsci-libs/vtk: 9.3.1 update tests (diff)
downloadgentoo-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.ebuild2
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