[cmake-commits] alex committed CMakeCCompilerId.c 1.13 1.14 CMakeCXXCompilerId.cpp 1.8 1.9

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Sep 17 15:55:19 EDT 2007


Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv19970/Modules

Modified Files:
	CMakeCCompilerId.c CMakeCXXCompilerId.cpp 
Log Message:

ENH: add support for the Portland Compiler to CMake, can build cmake and the tests pass (except the wrapping tests, which fail to link to the g++-compiled Qt)

Alex



Index: CMakeCCompilerId.c
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeCCompilerId.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- CMakeCCompilerId.c	12 Jul 2007 17:41:00 -0000	1.13
+++ CMakeCCompilerId.c	17 Sep 2007 19:55:17 -0000	1.14
@@ -27,6 +27,9 @@
 #elif defined(__IBMC__)
 # define COMPILER_ID "VisualAge"
 
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+
 #elif defined(__GNUC__)
 # define COMPILER_ID "GNU"
 

Index: CMakeCXXCompilerId.cpp
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeCXXCompilerId.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- CMakeCXXCompilerId.cpp	12 Jul 2007 17:41:00 -0000	1.8
+++ CMakeCXXCompilerId.cpp	17 Sep 2007 19:55:17 -0000	1.9
@@ -29,6 +29,9 @@
 #elif defined(__IBMCPP__)
 # define COMPILER_ID "VisualAge"
 
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+
 #elif defined(__GNUC__)
 # define COMPILER_ID "GNU"
 



More information about the Cmake-commits mailing list