summaryrefslogtreecommitdiff
path: root/BUILD/util.sh
diff options
context:
space:
mode:
authorunknown <knielsen@knielsen-hq.org>2010-01-07 13:02:18 +0100
committerunknown <knielsen@knielsen-hq.org>2010-01-07 13:02:18 +0100
commit951e92b2640793e4bfe4d02b8220266945326c0d (patch)
treec9a9bbb34afd97126a362fa93bb8ed01b07bb9fa /BUILD/util.sh
parentb96f268acc3a693b673fceccc62311e169496731 (diff)
downloadmariadb-git-951e92b2640793e4bfe4d02b8220266945326c0d.tar.gz
Add BUILD/compile-bintar, which builds MariaDB with correct options for a binary tarball release.
BUILD/Makefile.am: Add BUILD/compile-bintar to source tarball. BUILD/SETUP.sh: Move common code to separate file to enable sharing. BUILD/compile-bintar: Add script to build with correct flags and ./configure options for bintar package. BUILD/util.sh: Move common code to separate file to enable sharing.
Diffstat (limited to 'BUILD/util.sh')
-rw-r--r--BUILD/util.sh40
1 files changed, 40 insertions, 0 deletions
diff --git a/BUILD/util.sh b/BUILD/util.sh
new file mode 100644
index 00000000000..63b42db1f83
--- /dev/null
+++ b/BUILD/util.sh
@@ -0,0 +1,40 @@
+# MariaDB SQL server.
+# Copyright (C) 2010 Kristian Nielsen and Monty Program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+# Setting cpu options.
+get_cpuopt () {
+ case "$(gcc -dumpmachine)" in
+ x86_64-*)
+ # gcc barfs on -march=... on x64
+ CPUOPT="-m64 -mtune=generic"
+ ;;
+ *)
+ # we'd use i586 to not trip up mobile/lowpower devices
+ CPUOPT="-m32 -march=i586 -mtune=generic"
+ ;;
+ esac
+ return 0
+}
+
+# Default to a parallel build, but only if AM_MAKEFLAGS is not set.
+# (So buildbots can easily disable this behaviour if required.)
+get_make_parallel_flag () {
+ if test -z "$AM_MAKEFLAGS"
+ then
+ AM_MAKEFLAGS="-j 6"
+ fi
+ return 0
+}