diff options
author | Michael Widenius <monty@askmonty.org> | 2011-03-31 16:26:51 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2011-03-31 16:26:51 +0300 |
commit | 1ee94dc2f7f3deb81eadd52b546b827ca76c24a9 (patch) | |
tree | cc459fb7b44b5da8de526b91e9718fdb5ec40946 /BUILD/compile-alpha-debug | |
parent | 309e016eec1e0eaed144c3f43fff8470663e1a13 (diff) | |
download | mariadb-git-1ee94dc2f7f3deb81eadd52b546b827ca76c24a9.tar.gz |
Fixed all BUILD scripts to use g++ instead of gcc for linking
Fixed memory leak from HEAP tables that was not deleted properly
BUILD/compile-alpha-ccc:
Use g++ instead of gcc for linking
BUILD/compile-alpha-debug:
Use g++ instead of gcc for linking
BUILD/compile-pentium-pgcc:
Use g++ instead of gcc for linking
BUILD/compile-solaris-sparc:
Use g++ instead of gcc for linking
BUILD/compile-solaris-sparc-debug:
Use g++ instead of gcc for linking
BUILD/compile-solaris-sparc-purify:
Use g++ instead of gcc for linking
sql/item.cc:
Safety fixes for expr_cache
Call Item_result:field::cleanup() in Item_cache_wrapper::cleanup()
More DBUG_PRINT
sql/sql_base.cc:
Simple optimization for setup_wild
More DBUG_PRINT
sql/sql_expression_cache.cc:
Added header
Removed not needed initialization
sql/sql_lex.cc:
More DBUG_PRINT
sql/sql_select.cc:
More DBUG_PRINT
Fixed memory leak from HEAP tables that was not deleted properly
storage/heap/hp_create.c:
More DBUG_PRINT
Diffstat (limited to 'BUILD/compile-alpha-debug')
-rwxr-xr-x | BUILD/compile-alpha-debug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/compile-alpha-debug b/BUILD/compile-alpha-debug index 94fe8a2b414..2d8869227dc 100755 --- a/BUILD/compile-alpha-debug +++ b/BUILD/compile-alpha-debug @@ -8,5 +8,5 @@ make -k maintainer-clean path=`dirname $0` . "$path/autorun.sh" -CFLAGS=-O1 CC=gcc CXX=gcc CXXFLAGS="-O1 -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql --with-debug --with-extra-charsets=complex --without-extra-tools +CFLAGS=-O1 CC=gcc CXX=g++ CXXFLAGS="-O1 -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql --with-debug --with-extra-charsets=complex --without-extra-tools make |