summaryrefslogtreecommitdiff
path: root/BUILD/compile-dist
diff options
context:
space:
mode:
authorlenz@mysql.com <>2005-05-07 00:53:36 +0200
committerlenz@mysql.com <>2005-05-07 00:53:36 +0200
commitb3d916468d6e083808e502c58566ea9eff6d8230 (patch)
treecfca32fc0505d4dd79c5a0a069f5282d49180c23 /BUILD/compile-dist
parentbc27c14ea924b0e11ad21d38c69e3afe56a6e151 (diff)
downloadmariadb-git-b3d916468d6e083808e502c58566ea9eff6d8230.tar.gz
- added some required CXXFLAGS to BUILD/compile-dist to allow the distribution build to pass without
unresolved symbols
Diffstat (limited to 'BUILD/compile-dist')
-rwxr-xr-xBUILD/compile-dist5
1 files changed, 5 insertions, 0 deletions
diff --git a/BUILD/compile-dist b/BUILD/compile-dist
index ef6302f0d9c..4fa3c0a8624 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