mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
c3afb478eb
Remove optimizations on innobase/mem/* to avoid apparent compiler bug which causes memory overruns. See also bug 19424, and probably bug 36366. This is done in 5.1+; 5.0 already has this workaround in place. storage/innobase/CMakeLists.txt: Remove optimizations on innobase/mem/* to avoid apparent compiler bug which causes memory overruns. See bug 34297, bug 19424, and probably bug 36366.
70 lines
3.3 KiB
CMake
Executable file
70 lines
3.3 KiB
CMake
Executable file
# Copyright (C) 2006 MySQL AB
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -DSAFEMALLOC -DSAFE_MUTEX")
|
|
SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -DSAFEMALLOC -DSAFE_MUTEX")
|
|
ADD_DEFINITIONS(-DMYSQL_SERVER -D_WIN32 -D_LIB)
|
|
|
|
# Bug 19424 - InnoDB: Possibly a memory overrun of the buffer being freed (64-bit Visual C)
|
|
# Removing Win64 compiler optimizations for all innodb/mem/* files.
|
|
IF(CMAKE_GENERATOR MATCHES "Visual Studio" AND CMAKE_SIZEOF_VOID_P MATCHES 8)
|
|
SET_SOURCE_FILES_PROPERTIES(${CMAKE_SOURCE_DIR}/storage/innobase/mem/mem0mem.c
|
|
${CMAKE_SOURCE_DIR}/storage/innobase/mem/mem0pool.c
|
|
PROPERTIES COMPILE_FLAGS -Od)
|
|
ENDIF(CMAKE_GENERATOR MATCHES "Visual Studio" AND CMAKE_SIZEOF_VOID_P MATCHES 8)
|
|
|
|
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/zlib
|
|
${CMAKE_SOURCE_DIR}/storage/innobase/include
|
|
${CMAKE_SOURCE_DIR}/storage/innobase/handler
|
|
${CMAKE_SOURCE_DIR}/sql
|
|
${CMAKE_SOURCE_DIR}/regex
|
|
${CMAKE_SOURCE_DIR}/extra/yassl/include)
|
|
|
|
SET(INNOBASE_SOURCES btr/btr0btr.c btr/btr0cur.c btr/btr0pcur.c btr/btr0sea.c
|
|
buf/buf0buf.c buf/buf0flu.c buf/buf0lru.c buf/buf0rea.c
|
|
data/data0data.c data/data0type.c
|
|
dict/dict0boot.c dict/dict0crea.c dict/dict0dict.c dict/dict0load.c dict/dict0mem.c
|
|
dyn/dyn0dyn.c
|
|
eval/eval0eval.c eval/eval0proc.c
|
|
fil/fil0fil.c
|
|
fsp/fsp0fsp.c
|
|
fut/fut0fut.c fut/fut0lst.c
|
|
ha/ha0ha.c ha/hash0hash.c
|
|
ibuf/ibuf0ibuf.c
|
|
pars/lexyy.c pars/pars0grm.c pars/pars0opt.c pars/pars0pars.c pars/pars0sym.c
|
|
lock/lock0lock.c
|
|
log/log0log.c log/log0recv.c
|
|
mach/mach0data.c
|
|
mem/mem0mem.c mem/mem0pool.c
|
|
mtr/mtr0log.c mtr/mtr0mtr.c
|
|
os/os0file.c os/os0proc.c os/os0sync.c os/os0thread.c
|
|
page/page0cur.c page/page0page.c
|
|
que/que0que.c
|
|
handler/ha_innodb.cc
|
|
read/read0read.c
|
|
rem/rem0cmp.c rem/rem0rec.c
|
|
row/row0ins.c row/row0mysql.c row/row0purge.c row/row0row.c row/row0sel.c row/row0uins.c
|
|
row/row0umod.c row/row0undo.c row/row0upd.c row/row0vers.c
|
|
srv/srv0que.c srv/srv0srv.c srv/srv0start.c
|
|
sync/sync0arr.c sync/sync0rw.c sync/sync0sync.c
|
|
thr/thr0loc.c
|
|
trx/trx0purge.c trx/trx0rec.c trx/trx0roll.c trx/trx0rseg.c trx/trx0sys.c trx/trx0trx.c trx/trx0undo.c
|
|
usr/usr0sess.c
|
|
ut/ut0byte.c ut/ut0dbg.c ut/ut0mem.c ut/ut0rnd.c ut/ut0ut.c ut/ut0vec.c ut/ut0list.c ut/ut0wqueue.c)
|
|
|
|
IF(NOT SOURCE_SUBLIBS)
|
|
ADD_LIBRARY(innobase ${INNOBASE_SOURCES})
|
|
ADD_DEPENDENCIES(innobase GenError)
|
|
ENDIF(NOT SOURCE_SUBLIBS)
|