summaryrefslogtreecommitdiffstats
path: root/Source/cmNinjaNormalTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-12-05 16:57:47 (GMT)
committerBrad King <brad.king@kitware.com>2018-12-05 19:45:19 (GMT)
commit7b7421346194896109a304ff088630f37ab2bd9e (patch)
treef640077078c7b5233708b61d49fc29b494b1966e /Source/cmNinjaNormalTargetGenerator.cxx
parent62942969062fcc9f24ca057b6983532a973cfad6 (diff)
downloadCMake-7b7421346194896109a304ff088630f37ab2bd9e.zip
CMake-7b7421346194896109a304ff088630f37ab2bd9e.tar.gz
CMake-7b7421346194896109a304ff088630f37ab2bd9e.tar.bz2
CUDA: Fix crash on linking to a CUDA target without CUDA enabled
Do not try to device link or add CUDA runtime libraries if the language is not enabled. Fixes: #18673 Issue: #18614
Diffstat (limited to 'Source/cmNinjaNormalTargetGenerator.cxx')
-rw-r--r--Source/cmNinjaNormalTargetGenerator.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx
index 6436969..8909e06 100644
--- a/Source/cmNinjaNormalTargetGenerator.cxx
+++ b/Source/cmNinjaNormalTargetGenerator.cxx
@@ -558,6 +558,10 @@ std::vector<std::string> cmNinjaNormalTargetGenerator::ComputeLinkCmd()
void cmNinjaNormalTargetGenerator::WriteDeviceLinkStatement()
{
+ if (!this->GetGlobalGenerator()->GetLanguageEnabled("CUDA")) {
+ return;
+ }
+
cmGeneratorTarget& genTarget = *this->GetGeneratorTarget();
// determine if we need to do any device linking for this target