[Cmake-commits] [cmake-commits] king committed CMakeCCompilerId.c.in 1.7 1.8 CMakeCXXCompilerId.cpp.in 1.5 1.6 CMakeFortranCompilerId.F.in 1.5 1.6
cmake-commits at cmake.org
cmake-commits at cmake.org
Wed Jan 13 12:12:41 EST 2010
Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv6261/Modules
Modified Files:
CMakeCCompilerId.c.in CMakeCXXCompilerId.cpp.in
CMakeFortranCompilerId.F.in
Log Message:
Recognize the PathScale C/C++/Fortran compilers
Index: CMakeCCompilerId.c.in
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeCCompilerId.c.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -C 2 -d -r1.7 -r1.8
*** CMakeCCompilerId.c.in 20 Nov 2009 02:58:42 -0000 1.7
--- CMakeCCompilerId.c.in 13 Jan 2010 17:12:38 -0000 1.8
***************
*** 37,40 ****
--- 37,43 ----
# define COMPILER_ID "PGI"
+ #elif defined(__PATHSCALE__)
+ # define COMPILER_ID "PathScale"
+
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
Index: CMakeCXXCompilerId.cpp.in
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeCXXCompilerId.cpp.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -C 2 -d -r1.5 -r1.6
*** CMakeCXXCompilerId.cpp.in 7 Aug 2009 14:13:03 -0000 1.5
--- CMakeCXXCompilerId.cpp.in 13 Jan 2010 17:12:38 -0000 1.6
***************
*** 39,42 ****
--- 39,45 ----
# define COMPILER_ID "PGI"
+ #elif defined(__PATHSCALE__)
+ # define COMPILER_ID "PathScale"
+
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
Index: CMakeFortranCompilerId.F.in
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeFortranCompilerId.F.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -C 2 -d -r1.5 -r1.6
*** CMakeFortranCompilerId.F.in 23 Oct 2009 12:25:42 -0000 1.5
--- CMakeFortranCompilerId.F.in 13 Jan 2010 17:12:39 -0000 1.6
***************
*** 9,12 ****
--- 9,14 ----
#elif defined(__G95__)
PRINT *, 'INFO:compiler[G95]'
+ #elif defined(__PATHSCALE__)
+ PRINT *, 'INFO:compiler[PathScale]'
#elif defined(__GNUC__)
PRINT *, 'INFO:compiler[GNU]'
More information about the Cmake-commits
mailing list