[cmake-commits] king committed cmDocumentVariables.cxx 1.8 1.9

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Jan 21 18:30:19 EST 2008


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv18530/Source

Modified Files:
	cmDocumentVariables.cxx 
Log Message:
ENH: Generalize the check for sizeof void* to detect more ABI information.


Index: cmDocumentVariables.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDocumentVariables.cxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- cmDocumentVariables.cxx	30 Dec 2007 21:11:38 -0000	1.8
+++ cmDocumentVariables.cxx	21 Jan 2008 23:30:17 -0000	1.9
@@ -840,6 +840,27 @@
      "Variables for Languages");
 
   cm->DefineProperty
+    ("CMAKE_<LANG>_COMPILER_ABI", cmProperty::VARIABLE,
+     "An internal variable subject to change.",
+     "This is used in determining the compiler ABI and is subject to change.",
+     false,
+     "Variables for Languages");
+
+  cm->DefineProperty
+    ("CMAKE_INTERNAL_PLATFORM_ABI", cmProperty::VARIABLE,
+     "An internal variable subject to change.",
+     "This is used in determining the compiler ABI and is subject to change.",
+     false,
+     "Variables for Languages");
+
+  cm->DefineProperty
+    ("CMAKE_<LANG>_SIZEOF_DATA_PTR", cmProperty::VARIABLE,
+     "An internal variable subject to change.",
+     "This is used in determining the architecture and is subject to change.",
+     false,
+     "Variables for Languages");
+
+  cm->DefineProperty
     ("CMAKE_COMPILER_IS_GNU<LANG>", cmProperty::VARIABLE,
      "True if the compiler is GNU.",
      "If the selected <LANG> compiler is the GNU "



More information about the Cmake-commits mailing list