diff options
author | lenz@mysql.com <> | 2005-05-07 01:28:46 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2005-05-07 01:28:46 +0200 |
commit | c97dde1a1837b0fbad784e85db277caabf6b8172 (patch) | |
tree | b76d1d61c4f8b003556a490c55b16055b8b9e536 /BUILD | |
parent | 82f4a0b021d68b30112d5f0c33118b6412e62d69 (diff) | |
parent | 6b10b260056eab621147bb8f763351a0bb6d510d (diff) | |
download | mariadb-git-c97dde1a1837b0fbad784e85db277caabf6b8172.tar.gz |
Merge mysql.com:/space/my/mysql-4.1-build
into mysql.com:/space/my/mysql-5.0-build
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-dist | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/BUILD/compile-dist b/BUILD/compile-dist index 7c177f54258..39095f59ffa 100755 --- a/BUILD/compile-dist +++ b/BUILD/compile-dist @@ -18,12 +18,17 @@ autoconf # Default to gcc for CC and CXX if test -z "$CXX" ; then export CXX=gcc + # Set some required compile options + if test -z "$CXXFLAGS" ; then + export CXXFLAGS="-felide-constructors -fno-exceptions -fno-rtti" + fi fi if test -z "$CC" ; then export CC=gcc fi + # Use ccache, if available if ccache -V > /dev/null 2>&1 then |