From: Date: October 15 2007 8:01am Subject: bk commit into 5.0 tree (iggy:1.2536) List-Archive: http://lists.mysql.com/commits/35540 Message-Id: <20071015060118.71D15496894@amd64> Below is the list of changes that have just been committed into a local 5.0 repository of iggy. When iggy does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-10-15 02:00:50-04:00, iggy@amd64.(none) +1 -0 Example CMakeLists.txt@stripped, 2007-10-15 02:00:45-04:00, iggy@amd64.(none) +2 -1 Example diff -Nrup a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt 2007-08-03 18:26:21 -04:00 +++ b/CMakeLists.txt 2007-10-15 02:00:45 -04:00 @@ -101,7 +101,8 @@ IF(CMAKE_GENERATOR MATCHES "Visual Studi # generate map files, set stack size (see bug#20815) SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MAP /MAPINFO:EXPORTS") - SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:1048576") + SET(CMAKE_CXX_STACK_SIZE "1048576" CACHE STRING "Stack Size" FORCE) + STRING(REPLACE "/STACK:10000000 " "" CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS}) # remove support for Exception handling STRING(REPLACE "/GX" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})