From: Date: August 2 2007 9:59pm Subject: bk commit into 5.1 tree (joerg:1.2588) BUG#20815 List-Archive: http://lists.mysql.com/commits/32028 X-Bug: 20815 Message-Id: <20070802195937.214172401@trift2.fambruehe> Below is the list of changes that have just been committed into a local 5.1 repository of joerg. When joerg 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-08-02 21:59:26+02:00, joerg@trift2. +1 -0 Limit stack size of the server to 1 MB. Manual transfer of the fix for bug#20815 from 5.0 to 5.1 CMakeLists.txt@stripped, 2007-08-02 21:59:22+02:00, joerg@trift2. +3 -0 Limit stack size of the server to 1 MB. Manual transfer of the fix for bug#20815 from 5.0 to 5.1 diff -Nrup a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt 2007-08-02 20:19:08 +02:00 +++ b/CMakeLists.txt 2007-08-02 21:59:22 +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})