mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
0d1ba873aa
BitKeeper/etc/ignore: auto-union BitKeeper/etc/logging_ok: auto-union Docs/manual.texi: Auto merged include/my_base.h: Auto merged mysql-test/t/func_time.test: Auto merged mysql-test/t/join.test: Auto merged mysql-test/t/rpl000012.test: Auto merged BUILD/FINISH.sh: Auto merged BitKeeper/deleted/.del-db_ext.h~a1e210bbd0de0a48: Auto merged BitKeeper/deleted/.del-mutex_ext.h~f20f47ddc346598b: Auto merged BitKeeper/deleted/.del-violite.c~984c09cffe14a11b: Auto merged BitKeeper/deleted/.del-violite.c~d7b85be615595ace: Auto merged Build-tools/Do-all-build-steps: Auto merged client/client_priv.h: Auto merged client/mysqladmin.c: Auto merged innobase/include/srv0srv.h: Auto merged innobase/include/univ.i: Auto merged innobase/log/log0log.c: Auto merged innobase/srv/srv0srv.c: Auto merged innobase/srv/srv0start.c: Auto merged isam/pack_isam.c: Auto merged libmysql_r/Makefile.am: Auto merged myisam/myisamchk.c: Auto merged mysql-test/t/having.test: Auto merged mysql-test/t/rpl000015-slave.sh: Auto merged mysql-test/t/rpl000016-slave.sh: Auto merged mysys/mf_cache.c: Auto merged mysys/mf_casecnv.c: Auto merged mysys/mf_tempfile.c: Auto merged readline/vi_mode.c: Auto merged strings/strto.c: Auto merged sql/field.cc: Auto merged sql/field.h: Auto merged sql/ha_berkeley.cc: Auto merged sql/ha_myisammrg.cc: Auto merged sql/handler.cc: Auto merged sql/item.h: Auto merged sql/log_event.cc: Auto merged sql/sql_acl.cc: Auto merged sql/time.cc: Auto merged BUILD/SETUP.sh: Use -mcpu as default (safe for all x86 cpu's) client/mysqldump.c: Merge from 3.23.44 configure.in: Update version number extra/resolveip.c: Portability fix
107 lines
2.2 KiB
Bash
Executable file
107 lines
2.2 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
WD=`pwd`
|
|
# Don't write a wrong path for BD !!!!!
|
|
if [ -w /my/tmp ]
|
|
then
|
|
BD=/my/tmp/BUILD
|
|
elif [ -n "$TMPDIR" ]
|
|
then
|
|
BD=$TMPDIR/BUILD
|
|
else
|
|
BD=/tmp/BUILD
|
|
fi
|
|
TMP_SCRIPT=$WD/Logs/00-temp-for-do-all-build-steps.$$
|
|
|
|
# We build on work
|
|
to_host=`hostname`
|
|
cc=gcc
|
|
ccc=gcc
|
|
EXTRA_CONFIG="--without-perl"
|
|
#AM_MAKEFLAGS="-j 2"
|
|
echo "Building on $to_host"
|
|
|
|
rm -rf $BD/*
|
|
rm -f $WD/binary/*
|
|
mkdir -p $WD/binary
|
|
mkdir -p $WD/Logs
|
|
mkdir -p $BD/Logs
|
|
|
|
cat > $TMP_SCRIPT <<END
|
|
# Show executed commands
|
|
set -x
|
|
# Move to the right place
|
|
cd "$WD"
|
|
# Create a build directory tree
|
|
bk export $BD
|
|
cd "$BD"
|
|
chmod -R u+rw,g+rw .
|
|
|
|
# Make it easy to remove an old build
|
|
umask 002
|
|
|
|
CC=$cc CXX=$ccc
|
|
export CC CXX
|
|
|
|
gmake -j 2 -k distclean
|
|
rm -f NEW-RPMS/*
|
|
|
|
# Stop on error
|
|
set -e
|
|
|
|
/bin/rm -f */.deps/*.P
|
|
/bin/rm -f config.cache
|
|
|
|
aclocal; autoheader; aclocal; automake; autoconf
|
|
(cd bdb/dist && sh s_all)
|
|
(cd innobase && aclocal && autoheader && aclocal && automake && autoconf)
|
|
|
|
# A normal user starts here. We must use mit-threads, bdb and innodb.
|
|
# Otherwise they do not end up in the distribution.
|
|
./configure \
|
|
--with-unix-socket-path=/var/tmp/mysql.sock \
|
|
--with-low-memory \
|
|
--with-mit-threads=yes $EXTRA_CONFIG \
|
|
--enable-thread-safe-client \
|
|
--with-berkeley-db \
|
|
--with-innodb \
|
|
--with-vio \
|
|
--without-pstack \
|
|
--with-extra-tools \
|
|
--with-embedded-server
|
|
|
|
gmake -j 2
|
|
|
|
time gmake -j 2 distcheck \
|
|
EXTRA_CONF_ARGS="--with-unix-socket-path=/var/tmp/mysql.sock --with-low-memory $EXTRA_CONFIG"
|
|
|
|
sh $BD/Build-tools/Do-rpm
|
|
|
|
rm -f $TMP_SCRIPT
|
|
END
|
|
|
|
set -e
|
|
|
|
log=$WD/Logs/Log-distcheck-`date +%y%m%d-%H%M`
|
|
|
|
echo "Logging script $TMP_SCRIPT into $log"
|
|
|
|
if test $to_host = "mysql-work"
|
|
then
|
|
# Try to get the right user for MySQL builds on work so that all
|
|
# files is owned by the same user (mysql)
|
|
ssh -n $to_host -l my "time sh $TMP_SCRIPT" > $log 2>&1
|
|
else
|
|
time sh $TMP_SCRIPT > $log 2>&1
|
|
fi
|
|
|
|
# Create a commercial MySQL distribution (mysqlcom-VER.tar.gz) from
|
|
# the newly made source distribution
|
|
|
|
cd "$BD"
|
|
DIST=`ls -t mysql-*.tar.gz | head -1`
|
|
$BD/Build-tools/mysql-copyright --target=. $DIST
|
|
|
|
# move the binaries to the 'binary' directory
|
|
mv $BD/mysql*tar.gz $WD/binary
|
|
mv $BD/NEW-RPMS/* $WD/binary
|