forked from Percona-QA/percona-qa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_5.x_debug.sh
executable file
·74 lines (64 loc) · 3.02 KB
/
build_5.x_debug.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
72
73
74
#!/bin/bash
# Created by Roel Van de Paar, Percona LLC
MAKE_THREADS=1 # Number of build threads. There may be a bug with >1 settings
WITH_ROCKSDB=1 # 0 or 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
VERSION_EXTRA="$(grep "MYSQL_VERSION_EXTRA=" VERSION | sed 's|MYSQL_VERSION_EXTRA=||;s|[ \t]||g')"
if [ "${VERSION_EXTRA}" == "" -o "${VERSION_EXTRA}" == "-dmr" ]; then # MS has no extra version number, or shows '-dmr' (exactly and only) in this place
MS=1
PREFIX="MS${DATE}"
else
PREFIX="PS${DATE}"
fi
CURPATH=$(echo $PWD | sed 's|.*/||')
cd ..
rm -Rf ${CURPATH}_dbg
rm -f /tmp/5.7_debug_build
cp -R ${CURPATH} ${CURPATH}_dbg
cd ${CURPATH}_dbg
### TEMPORARY HACK TO AVOID COMPILING TB (WHICH IS NOT READY YET)
rm -Rf ./plugin/tokudb-backup-plugin
cmake . -DWITH_ZLIB=system -DCMAKE_BUILD_TYPE=Debug -DBUILD_CONFIG=mysql_release -DFEATURE_SET=community -DDEBUG_EXTNAME=OFF -DWITH_EMBEDDED_SERVER=OFF -DWITH_ROCKSDB=${WITH_ROCKSDB} -DENABLE_DOWNLOADS=1 -DDOWNLOAD_BOOST=1 -DWITH_BOOST=/tmp -DWITH_SSL=system -DWITH_PAM=ON ${ASAN} | tee /tmp/5.7_debug_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_debug_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_debug_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_debug_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_dbg=`ls -1 *.tar.gz | head -n1`
if [ "$TAR_dbg}" != "" ]; then
DIR_dbg=$(echo "${TAR_dbg}" | sed 's|.tar.gz||')
TAR_dbg_new=$(echo "${PREFIX}-${TAR_dbg}" | sed 's|.tar.gz|-debug.tar.gz|')
DIR_dbg_new=$(echo "${TAR_dbg_new}" | sed 's|.tar.gz||')
if [ "${DIR_dbg}" != "" ]; then rm -Rf ../${DIR_dbg}; fi
if [ "${DIR_dbg_new}" != "" ]; then rm -Rf ../${DIR_dbg_new}; fi
if [ "${TAR_dbg_new}" != "" ]; then rm -Rf ../${TAR_dbg_new}; fi
mv ${TAR_dbg} ../${TAR_dbg_new}
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
cd ..
tar -xf ${TAR_dbg_new}
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
mv ${DIR_dbg} ${DIR_dbg_new}
if [ $? -ne 0 ]; then echo "Assert: non-0 exit status detected!"; exit 1; fi
echo "Done! Now run;"
echo "mv ../${DIR_dbg_new} /sda" # The script will end still in $PWD, hence we will need ../ (output only)
#rm -Rf ${CURPATH}_dbg # 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