mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 19:30:13 -06:00
Merge branch 'vs-cuda-fix-flags' into release-3.9
This commit is contained in:
@@ -2530,7 +2530,7 @@ bool cmVisualStudio10TargetGenerator::ComputeCudaOptions(
|
||||
cudaOptions.RemoveFlag("AdditionalCompilerOptions");
|
||||
if (!aco.empty()) {
|
||||
aco = this->LocalGenerator->EscapeForShell(aco, false);
|
||||
cudaOptions.AppendFlag("AdditionalOptions", "-Xcompiler=" + aco);
|
||||
cudaOptions.AppendFlagString("AdditionalOptions", "-Xcompiler=" + aco);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2619,8 +2619,8 @@ bool cmVisualStudio10TargetGenerator::ComputeCudaLinkOptions(
|
||||
// Suppress deprecation warnings for default GPU targets during device link.
|
||||
if (cmSystemTools::VersionCompareGreaterEq(
|
||||
this->GlobalGenerator->GetPlatformToolsetCudaString(), "8.0")) {
|
||||
cudaLinkOptions.AppendFlag("AdditionalOptions",
|
||||
"-Wno-deprecated-gpu-targets");
|
||||
cudaLinkOptions.AppendFlagString("AdditionalOptions",
|
||||
"-Wno-deprecated-gpu-targets");
|
||||
}
|
||||
|
||||
this->CudaLinkOptions[configName] = pOptions.release();
|
||||
|
||||
@@ -16,6 +16,11 @@ set(CMAKE_CUDA_STANDARD 11)
|
||||
add_library(CUDASeparateLibA STATIC file1.cu file2.cu file3.cu)
|
||||
|
||||
if(CMAKE_CUDA_SIMULATE_ID STREQUAL "MSVC")
|
||||
# Test adding a flag that is not in our CUDA flag table for VS.
|
||||
if(NOT CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 8)
|
||||
string(APPEND CMAKE_CUDA_FLAGS " --ftemplate-depth 50")
|
||||
endif()
|
||||
# Test adding a flag that nvcc should pass to the host compiler.
|
||||
target_compile_options(CUDASeparateLibA PRIVATE -Xcompiler=-bigobj)
|
||||
endif()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user