summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeCCompilerId.c.in
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-11-12 14:12:08 (GMT)
committerBrad King <brad.king@kitware.com>2010-11-12 14:12:08 (GMT)
commit53e76c8f126fd2480c560cf2bb46a93eabbc91fa (patch)
treec275a3c1f9995e5c76ae234b4f8e74a3a29897b1 /Modules/CMakeCCompilerId.c.in
parent34e1ac2489778a854c3ffaa9c141a9a70416a47e (diff)
downloadCMake-53e76c8f126fd2480c560cf2bb46a93eabbc91fa.zip
CMake-53e76c8f126fd2480c560cf2bb46a93eabbc91fa.tar.gz
CMake-53e76c8f126fd2480c560cf2bb46a93eabbc91fa.tar.bz2
Teach CMake about Cray C, C++, and Fortran compilers
The Cray Fortran compiler needs "-em" to enable module output and also "-J." to place the .mod files in the current working directory (instead of next to the .o file).
Diffstat (limited to 'Modules/CMakeCCompilerId.c.in')
-rw-r--r--Modules/CMakeCCompilerId.c.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/CMakeCCompilerId.c.in b/Modules/CMakeCCompilerId.c.in
index accda32..2b80c88 100644
--- a/Modules/CMakeCCompilerId.c.in
+++ b/Modules/CMakeCCompilerId.c.in
@@ -42,6 +42,9 @@
#elif defined(__PATHSCALE__)
# define COMPILER_ID "PathScale"
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"