|
98 | 98 | # CUDA_HOST_COMPILATION_CPP (Default ON)
|
99 | 99 | # -- Set to OFF for C compilation of host code.
|
100 | 100 | #
|
101 |
| -# CUDA_HOST_COMPILER (Default CMAKE_C_COMPILER, $(VCInstallDir)/bin for VS) |
| 101 | +# CUDA_HOST_COMPILER (Default CMAKE_C_COMPILER) |
102 | 102 | # -- Set the host compiler to be used by nvcc. Ignored if -ccbin or
|
103 | 103 | # --compiler-bindir is already present in the CUDA_NVCC_FLAGS or
|
104 |
| -# CUDA_NVCC_FLAGS_<CONFIG> variables. For Visual Studio targets |
105 |
| -# $(VCInstallDir)/bin is a special value that expands out to the path when |
106 |
| -# the command is run from within VS. |
| 104 | +# CUDA_NVCC_FLAGS_<CONFIG> variables. For Visual Studio targets, |
| 105 | +# the host compiler is constructed with one or more visual studio macros |
| 106 | +# such as $(VCInstallDir), that expands out to the path when |
| 107 | +# the command is run from withing VS. |
107 | 108 | #
|
108 | 109 | # CUDA_NVCC_FLAGS
|
109 | 110 | # CUDA_NVCC_FLAGS_<CONFIG>
|
@@ -527,7 +528,13 @@ option(CUDA_HOST_COMPILATION_CPP "Generated file extension" ON)
|
527 | 528 | set(CUDA_NVCC_FLAGS "" CACHE STRING "Semi-colon delimit multiple arguments.")
|
528 | 529 |
|
529 | 530 | if(CMAKE_GENERATOR MATCHES "Visual Studio")
|
530 |
| - set(CUDA_HOST_COMPILER "$(VCInstallDir)bin" CACHE FILEPATH "Host side compiler used by NVCC") |
| 531 | + set(_CUDA_MSVC_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") |
| 532 | + if(MSVC_VERSION LESS 1910) |
| 533 | + set(_CUDA_MSVC_HOST_COMPILER "$(VCInstallDir)bin") |
| 534 | + endif() |
| 535 | + |
| 536 | + set(CUDA_HOST_COMPILER "${_CUDA_MSVC_HOST_COMPILER}" CACHE FILEPATH "Host side compiler used by NVCC") |
| 537 | + |
531 | 538 | else()
|
532 | 539 | if(APPLE
|
533 | 540 | AND "${CMAKE_C_COMPILER_ID}" MATCHES "Clang"
|
@@ -1318,11 +1325,11 @@ macro(CUDA_WRAP_SRCS cuda_target format generated_files)
|
1318 | 1325 | endif()
|
1319 | 1326 |
|
1320 | 1327 | # This needs to be passed in at this stage, because VS needs to fill out the
|
1321 |
| - # value of VCInstallDir from within VS. Note that CCBIN is only used if |
| 1328 | + # various macros from within VS. Note that CCBIN is only used if |
1322 | 1329 | # -ccbin or --compiler-bindir isn't used and CUDA_HOST_COMPILER matches
|
1323 |
| - # $(VCInstallDir)/bin. |
| 1330 | + # _CUDA_MSVC_HOST_COMPILER |
1324 | 1331 | if(CMAKE_GENERATOR MATCHES "Visual Studio")
|
1325 |
| - set(ccbin_flags -D "\"CCBIN:PATH=$(VCInstallDir)bin\"" ) |
| 1332 | + set(ccbin_flags -D "\"CCBIN:PATH=${_CUDA_MSVC_HOST_COMPILER}\"" ) |
1326 | 1333 | else()
|
1327 | 1334 | set(ccbin_flags)
|
1328 | 1335 | endif()
|
|
0 commit comments