summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeCUDACompilerABI.cu
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2016-08-29 17:28:37 (GMT)
committerRobert Maynard <robert.maynard@kitware.com>2016-11-14 16:36:43 (GMT)
commit4f5155f6aba7cb7cd8c0e5b75e43b38a70568eb1 (patch)
treef9985cf9906992c74390b8187fd9d4c3d371684e /Modules/CMakeCUDACompilerABI.cu
parentaaeee1ca72d4f8b09ebf98c3e3bd73d50c09c0d8 (diff)
downloadCMake-4f5155f6aba7cb7cd8c0e5b75e43b38a70568eb1.zip
CMake-4f5155f6aba7cb7cd8c0e5b75e43b38a70568eb1.tar.gz
CMake-4f5155f6aba7cb7cd8c0e5b75e43b38a70568eb1.tar.bz2
CUDA: We now properly perform CUDA compiler identification.
Diffstat (limited to 'Modules/CMakeCUDACompilerABI.cu')
-rw-r--r--Modules/CMakeCUDACompilerABI.cu16
1 files changed, 16 insertions, 0 deletions
diff --git a/Modules/CMakeCUDACompilerABI.cu b/Modules/CMakeCUDACompilerABI.cu
new file mode 100644
index 0000000..5aa1b8a
--- /dev/null
+++ b/Modules/CMakeCUDACompilerABI.cu
@@ -0,0 +1,16 @@
+#ifndef __CUDACC__
+# error "A C or C++ compiler has been selected for CUDA"
+#endif
+
+#include "CMakeCompilerABI.h"
+
+int main(int argc, char* argv[])
+{
+ int require = 0;
+ require += info_sizeof_dptr[argc];
+#if defined(ABI_ID)
+ require += info_abi[argc];
+#endif
+ (void)argv;
+ return require;
+}