[Cmake-commits] [cmake-commits] king committed cmGlobalUnixMakefileGenerator3.cxx 1.134 1.135
cmake-commits at cmake.org
cmake-commits at cmake.org
Wed Jun 10 13:04:06 EDT 2009
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv21329/Source
Modified Files:
cmGlobalUnixMakefileGenerator3.cxx
Log Message:
ENH: Enable basic OpenVMS platform support
This adds the Modules/Platform/OpenVMS.cmake platform file for OpenVMS.
We just use Unix-like rules to work with the GNV compiler front-end.
A problem with process execution currently prevents CMake link scripts
from working, so we avoid using them.
Index: cmGlobalUnixMakefileGenerator3.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalUnixMakefileGenerator3.cxx,v
retrieving revision 1.134
retrieving revision 1.135
diff -C 2 -d -r1.134 -r1.135
*** cmGlobalUnixMakefileGenerator3.cxx 10 Jun 2009 17:02:18 -0000 1.134
--- cmGlobalUnixMakefileGenerator3.cxx 10 Jun 2009 17:04:04 -0000 1.135
***************
*** 32,36 ****
this->ForceVerboseMakefiles = false;
! #ifdef _WIN32
this->UseLinkScript = false;
#else
--- 32,36 ----
this->ForceVerboseMakefiles = false;
! #if defined(_WIN32) || defined(__VMS)
this->UseLinkScript = false;
#else
More information about the Cmake-commits
mailing list