diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2017-01-05 16:31:36 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-01-12 15:13:36 -0500 |
commit | 8d1f9e5b850e02d304e4c209e720f06e25837470 (patch) | |
tree | 35e787859dc2a9e3bc4ebb9eb6fcd8a666f09e9c /Source/cmLinkLineComputer.cxx | |
parent | dc5051f1c1b7604b9c05e04bdccdff222b69efa0 (diff) | |
download | cmake-8d1f9e5b850e02d304e4c209e720f06e25837470.tar.gz |
CUDA: Now pass correct FLAGS when device link cuda executables.
Previously we had a two issues when building cuda executables
that required separable compilation. The first was that we didn't
propagate FLAGS causing any -arch / -gencode flags to be dropped, and
secondly generators such as ninja would use the CXX language flags
instead of CUDA when the executable was mixed language.
Diffstat (limited to 'Source/cmLinkLineComputer.cxx')
-rw-r--r-- | Source/cmLinkLineComputer.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmLinkLineComputer.cxx b/Source/cmLinkLineComputer.cxx index cf0cf88a4e..e728632bd4 100644 --- a/Source/cmLinkLineComputer.cxx +++ b/Source/cmLinkLineComputer.cxx @@ -184,3 +184,9 @@ std::string cmLinkLineComputer::ComputeLinkLibraries( return fout.str(); } + +std::string cmLinkLineComputer::GetLinkerLanguage(cmGeneratorTarget* target, + std::string const& config) +{ + return target->GetLinkerLanguage(config); +} |