The branch, master has been updated
via f8a300c6739ea2ca648579d7faf3ae9811b9f19a (commit)
from 45db6945e960c6fd46e746cdc9de3bc53dc30c4a (commit)
- Log -----------------------------------------------------------------
commit f8a300c6739ea2ca648579d7faf3ae9811b9f19a
Author: Timo Rothenpieler <[email protected]>
AuthorDate: Mon Sep 8 14:24:56 2025 +0200
Commit: Timo Rothenpieler <[email protected]>
CommitDate: Mon Sep 8 14:25:44 2025 +0200
configure: fix CUDA compilation with SDK version 13 nvcc
Compute Capability 7.5 is now the lowest supported version.
Fixes #20454
diff --git a/configure b/configure
index a38cbdb89f..c6afcd7494 100755
--- a/configure
+++ b/configure
@@ -4812,6 +4812,9 @@ if enabled cuda_nvcc; then
if $nvcc $nvccflags_default 2>&1 | grep -qi unsupported; then
nvccflags_default="-gencode arch=compute_60,code=sm_60 -O2"
fi
+ if $nvcc $nvccflags_default 2>&1 | grep -qi unsupported; then
+ nvccflags_default="-gencode arch=compute_75,code=sm_75 -O2"
+ fi
fi
set_default arch cc cxx doxygen pkg_config ranlib strip sysinclude \
-----------------------------------------------------------------------
Summary of changes:
configure | 3 +++
1 file changed, 3 insertions(+)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]