diff options
author | Brad King <brad.king@kitware.com> | 2020-06-17 10:44:18 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-06-17 10:44:25 (GMT) |
commit | 55ade79ab830d6792917378daedb9d255a346c47 (patch) | |
tree | eb0a0f42c55d0ececf425f6a2275c346bd326ccc /Source | |
parent | f9f1067c177feb7a32f9b957bff2bcb3e9da333f (diff) | |
parent | bdb105ee94046f0b89e60c9fabe4e4a058844005 (diff) | |
download | CMake-55ade79ab830d6792917378daedb9d255a346c47.zip CMake-55ade79ab830d6792917378daedb9d255a346c47.tar.gz CMake-55ade79ab830d6792917378daedb9d255a346c47.tar.bz2 |
Merge topic 'cuda_clang_limitations'
bdb105ee94 Help: Mention CUDA Clang limitations in 3.18 release notes
fec7dd33d3 CUDA: Add issue number to Clang separable compilation error
14163d7d6b CUDA: Throw error for Clang on Windows
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4903
Diffstat (limited to 'Source')
-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 f748822..3b3f110 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."); } } } |