mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-12 17:19:05 -05:00
Merge topic 'FindCUDA-nvcc-clcache-support'
2da3698447 FindCUDA: Add support for clcache
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1933
This commit is contained in:
@@ -557,6 +557,11 @@ else()
|
||||
set(c_compiler_realpath "")
|
||||
endif()
|
||||
set(CUDA_HOST_COMPILER "${c_compiler_realpath}" CACHE FILEPATH "Host side compiler used by NVCC")
|
||||
elseif(MSVC AND "${CMAKE_C_COMPILER}" MATCHES "clcache")
|
||||
# NVCC does not think it will work if it is passed clcache.exe as the host
|
||||
# compiler, which means that builds with CC=cl.exe won't work. Best to just
|
||||
# feed it whatever the actual cl.exe is as the host compiler.
|
||||
set(CUDA_HOST_COMPILER "cl.exe" CACHE FILEPATH "Host side compiler used by NVCC")
|
||||
else()
|
||||
set(CUDA_HOST_COMPILER "${CMAKE_C_COMPILER}"
|
||||
CACHE FILEPATH "Host side compiler used by NVCC")
|
||||
|
||||
Reference in New Issue
Block a user