summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2020-04-08 13:34:17 (GMT)
committerMarc Chevrier <marc.chevrier@gmail.com>2020-04-19 13:04:56 (GMT)
commitec48e023f6261371aa5d0e46ebf9c163e40c9b40 (patch)
treeb79af540c319d8b09aa1fc7492c6352b70187402 /Modules/Compiler/NVIDIA-DetermineCompiler.cmake
parent3fdae5acaaa7ef29e8776e4dccde6102016624f6 (diff)
downloadCMake-ec48e023f6261371aa5d0e46ebf9c163e40c9b40.zip
CMake-ec48e023f6261371aa5d0e46ebf9c163e40c9b40.tar.gz
CMake-ec48e023f6261371aa5d0e46ebf9c163e40c9b40.tar.bz2
CUDA: Add information for LINKER: pattern translation
Diffstat (limited to 'Modules/Compiler/NVIDIA-DetermineCompiler.cmake')
-rw-r--r--Modules/Compiler/NVIDIA-DetermineCompiler.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/Modules/Compiler/NVIDIA-DetermineCompiler.cmake b/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
index bf9111a..4f6ddc2 100644
--- a/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
+++ b/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
@@ -11,9 +11,19 @@ set(_compiler_id_version_compute "
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
+# elif defined(__clang__)
+# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
+# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
+# elif defined(__GNUC__)
+# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
+# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif")
set(_compiler_id_simulate "
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
+# elif defined(__clang__)
+# define @PREFIX@SIMULATE_ID \"Clang\"
+# elif defined(__GNUC__)
+# define @PREFIX@SIMULATE_ID \"GNU\"
# endif")