This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/8.0 in repository ffmpeg.
commit 0ea1ebfaba51377a41b6b9f70b81f33ee4ac874e Author: Timo Rothenpieler <[email protected]> AuthorDate: Mon Sep 8 14:24:56 2025 +0200 Commit: Marvin Scholz <[email protected]> CommitDate: Mon Jun 29 13:57:31 2026 +0200 configure: fix CUDA compilation with SDK version 13 nvcc Compute Capability 7.5 is now the lowest supported version. Fixes #20454 (cherry-picked from commit f8a300c6739ea2ca648579d7faf3ae9811b9f19a) Signed-off-by: Marvin Scholz <[email protected]> --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 6fecd29e6c..7e6b86498c 100755 --- a/configure +++ b/configure @@ -4800,6 +4800,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 \ _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
