diff options
author | Raul Tambre <raul@tambre.ee> | 2020-06-16 20:54:04 +0300 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-06-16 14:07:30 -0400 |
commit | fec7dd33d309aeccf870169d957c69f9ee523463 (patch) | |
tree | 83fab626e89224be82c1fe5033d02ce01438e285 /Source/cmLocalGenerator.cxx | |
parent | 14163d7d6b818ac1add7d467b643abfed8fe7216 (diff) | |
download | cmake-fec7dd33d309aeccf870169d957c69f9ee523463.tar.gz |
CUDA: Add issue number to Clang separable compilation error
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index f7488227b2..3b3f110dc9 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1997,7 +1997,8 @@ void cmLocalGenerator::AddLanguageFlags(std::string& flags, if (separable) { this->Makefile->IssueMessage( MessageType::FATAL_ERROR, - "CUDA_SEPARABLE_COMPILATION isn't supported on Clang."); + "CUDA_SEPARABLE_COMPILATION isn't supported on Clang. " + "See CMake issue #20726."); } } } |