Skip to content

Commit bc88329

Browse files
bradkingkwrobot
authored andcommittedJan 9, 2018
Merge topic 'msvc2017-findcuda'
fab1b43 FindCUDA: Update to properly find MSVC 2017 compiler tools Acked-by: Kitware Robot <[email protected]> Acked-by: Robert Maynard <[email protected]> Merge-request: !1631
2 parents 89d1274 + fab1b43 commit bc88329

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed
 

‎Modules/FindCUDA.cmake

+15-8
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,13 @@
9898
# CUDA_HOST_COMPILATION_CPP (Default ON)
9999
# -- Set to OFF for C compilation of host code.
100100
#
101-
# CUDA_HOST_COMPILER (Default CMAKE_C_COMPILER, $(VCInstallDir)/bin for VS)
101+
# CUDA_HOST_COMPILER (Default CMAKE_C_COMPILER)
102102
# -- Set the host compiler to be used by nvcc. Ignored if -ccbin or
103103
# --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.
107108
#
108109
# CUDA_NVCC_FLAGS
109110
# CUDA_NVCC_FLAGS_<CONFIG>
@@ -527,7 +528,13 @@ option(CUDA_HOST_COMPILATION_CPP "Generated file extension" ON)
527528
set(CUDA_NVCC_FLAGS "" CACHE STRING "Semi-colon delimit multiple arguments.")
528529

529530
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+
531538
else()
532539
if(APPLE
533540
AND "${CMAKE_C_COMPILER_ID}" MATCHES "Clang"
@@ -1318,11 +1325,11 @@ macro(CUDA_WRAP_SRCS cuda_target format generated_files)
13181325
endif()
13191326

13201327
# 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
13221329
# -ccbin or --compiler-bindir isn't used and CUDA_HOST_COMPILER matches
1323-
# $(VCInstallDir)/bin.
1330+
# _CUDA_MSVC_HOST_COMPILER
13241331
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}\"" )
13261333
else()
13271334
set(ccbin_flags)
13281335
endif()

‎Modules/FindCUDA/run_nvcc.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
125125
list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
126126
list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
127127
if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
128-
if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)bin" AND DEFINED CCBIN)
128+
if (CUDA_HOST_COMPILER STREQUAL "@_CUDA_MSVC_HOST_COMPILER@" AND DEFINED CCBIN)
129129
set(CCBIN -ccbin "${CCBIN}")
130130
else()
131131
set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")

0 commit comments

Comments
 (0)