forked from Percona-QA/percona-qa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_5.x_opt.sh
executable file
·71 lines (62 loc) · 2.73 KB
/
build_5.x_opt.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
# Created by Roel Van de Paar, Percona LLC
MAKE_THREADS=1
if [ ! -r VERSION ]; then
echo "Assert: 'VERSION' file not found!"
fi
ASAN=
if [ "${1}" != "" ]; then
echo "Building with ASAN enabled"
ASAN="-DWITH_ASAN=ON"
fi
DATE=$(date +'%d%m%y')
PREFIX=
MS=0
if [ "$(grep "MYSQL_VERSION_EXTRA=" VERSION | sed 's|MYSQL_VERSION_EXTRA=||;s|[ \t]||g')" == "" ]; then # MS has no extra version number
MS=1
PREFIX="MS${DATE}"
else
PREFIX="PS${DATE}"
fi
CURPATH=$(echo $PWD | sed 's|.*/||')
cd ..
rm -Rf ${CURPATH}_opt
rm -f /tmp/5.7_opt_build
cp -R ${CURPATH} ${CURPATH}_opt
cd ${CURPATH}_opt
### TEMPORARY HACK TO AVOID COMPILING TB (WHICH IS NOT READY YET)
rm -Rf ./plugin/tokudb-backup-plugin
cmake . -DWITH_ZLIB=system -DBUILD_CONFIG=mysql_release -DFEATURE_SET=community -DWITH_EMBEDDED_SERVER=OFF -DENABLE_DOWNLOADS=1 -DDOWNLOAD_BOOST=1 -DWITH_BOOST=/tmp -DWITH_SSL=system -DWITH_PAM=ON ${ASAN} | tee /tmp/5.7_opt_build
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
if [ "${ASAN}" != "" -a $MS -eq 1 ]; then
ASAN_OPTIONS="detect_leaks=0" make -j${MAKE_THREADS} | tee -a /tmp/5.7_opt_build # Upstream is affected by http://bugs.mysql.com/bug.php?id=80014 (fixed in PS)
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
else
make -j${MAKE_THREADS} | tee -a /tmp/5.7_opt_build
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
fi
./scripts/make_binary_distribution | tee -a /tmp/5.7_opt_build # Note that make_binary_distribution is created on-the-fly during the make compile
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
TAR_opt=`ls -1 *.tar.gz | head -n1`
if [ "${TAR_opt}" != "" ]; then
DIR_opt=$(echo "${TAR_opt}" | sed 's|.tar.gz||')
TAR_opt_new=$(echo "${PREFIX}-${TAR_opt}" | sed 's|.tar.gz|-opt.tar.gz|')
DIR_opt_new=$(echo "${TAR_opt_new}" | sed 's|.tar.gz||')
if [ "${DIR_opt}" != "" ]; then rm -Rf ../${DIR_opt}; fi
if [ "${DIR_opt_new}" != "" ]; then rm -Rf ../${DIR_opt_new}; fi
if [ "${TAR_opt_new}" != "" ]; then rm -Rf ../${TAR_opt_new}; fi
mv ${TAR_opt} ../${TAR_opt_new}
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
cd ..
tar -xf ${TAR_opt_new}
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
mv ${DIR_opt} ${DIR_opt_new}
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
echo "Done! Now run;"
echo "mv ../${DIR_opt_new} /sda" # The script will end still in $PWD, hence we will need ../ (output only)
#rm -Rf ${CURPATH}_opt # Best not to delete it; this way gdb debugging is better quality as source will be available!
exit 0
else
echo "There was some build issue... Have a nice day!"
exit 1
fi