mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
configure: cuda_llvm: fix include path for MSYS2
MSYS2 converts paths to MinGW-based applications from unix to pseudo-windows paths on execution time. Since there was no space between '-include' and the path, MSYS2 doesn't detect the path properly. Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
This commit is contained in:
parent
be4fb282f9
commit
5ac28e9cc1
2
configure
vendored
2
configure
vendored
@ -6094,7 +6094,7 @@ fi
|
|||||||
if enabled cuda_nvcc; then
|
if enabled cuda_nvcc; then
|
||||||
nvccflags="$nvccflags -ptx"
|
nvccflags="$nvccflags -ptx"
|
||||||
else
|
else
|
||||||
nvccflags="$nvccflags -S -nocudalib -nocudainc --cuda-device-only -include${source_link}/compat/cuda/cuda_runtime.h"
|
nvccflags="$nvccflags -S -nocudalib -nocudainc --cuda-device-only -include ${source_link}/compat/cuda/cuda_runtime.h"
|
||||||
check_nvcc cuda_llvm
|
check_nvcc cuda_llvm
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user