From: Date: July 27 2007 7:14pm Subject: bk commit into 5.1 tree (df:1.2558) BUG#20815 List-Archive: http://lists.mysql.com/commits/31724 X-Bug: 20815 Message-Id: <200707271714.l6RHEKf0005413@mail.mysql.com> Below is the list of changes that have just been committed into a local 5.1 repository of df. When df 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-07-27 19:14:08+02:00, df@stripped +1 -0 BUG#20815 for the 5.1 branch CMakeLists.txt@stripped, 2007-07-27 19:14:06+02:00, df@stripped +3 -0 BUG#20815 do not use 10MB of stack space per thread, enforce the previous 5.0 default of 1M diff -Nrup a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt 2007-06-26 20:23:59 +02:00 +++ b/CMakeLists.txt 2007-07-27 19:14:06 +02:00 @@ -136,6 +136,9 @@ IF(CMAKE_GENERATOR MATCHES "Visual Studi # generate .map files SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MAP /MAPINFO:EXPORTS") + # set stack size (see bug#20815) + SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:1048576") + # remove support for Exception handling STRING(REPLACE "/GX" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) STRING(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})