blob: b11e7cfcdd2d4e1c2c089b144bca50c6d6ce8f7c (
plain) (
blame)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
#!/usr/bin/env bash
CMD="$1"
MAKE=make
if [[ -z "${CMD}" ]]; then
export CMD="default"
fi
if [ -x "/usr/bin/mariadb_config" ]; then
export SQL=" --with-mysql=/usr/bin/mariadb_config"
elif [ -x "/usr/bin/mysql_config" ]; then
export SQL=" --with-mysql=/usr/bin/mysql_config"
elif [ -x "/usr/local/bin/mysql_config" ]; then
export SQL=" --with-mysql=/usr/local/bin/mysql_config"
else
export SQL=""
fi
source src/evol/tools/vars.sh
COMMON="--enable-packetver=20150513 --enable-debug=gdb${SQL}"
if [[ "$(uname)" == "FreeBSD" ]]; then
MAKE=gmake
export CORES=$(sysctl hw.ncpu | awk '{print $2}')
else
COMMON+=" --enable-epoll"
export CORES=$(cat /proc/cpuinfo|grep processor|wc -l)
fi
export COMMON
export MAKE
autoreconf
if [ "$?" != 0 ]; then
exit 1
fi
if [[ "${CMD}" == "default" || "${CMD}" == "all" ]]; then
export CC=gcc
./configure --enable-manager=no --enable-sanitize=full ${COMMON} CPPFLAGS="${VARS}"
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} -j${CORES}
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} install
if [ "$?" != 0 ]; then
exit 1
fi
cd src/evol
if [ "$?" != 0 ]; then
exit 1
fi
./build.sh
if [ "$?" != 0 ]; then
exit 1
fi
elif [[ "${CMD}" == "old" ]]; then
./configure --disable-lto ${COMMON} CPPFLAGS="${VARS}"
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} -j${CORES}
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} install
if [ "$?" != 0 ]; then
exit 1
fi
cd src/evol
if [ "$?" != 0 ]; then
exit 1
fi
./build.sh old
if [ "$?" != 0 ]; then
exit 1
fi
elif [[ "${CMD}" == "valgrind" ]]; then
./configure --enable-manager=no ${COMMON} CPPFLAGS="${VARS}"
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} -j${CORES}
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} install
if [ "$?" != 0 ]; then
exit 1
fi
cd src/evol
if [ "$?" != 0 ]; then
exit 1
fi
./build.sh old
if [ "$?" != 0 ]; then
exit 1
fi
elif [[ "${CMD}" == "gprof" ]]; then
./configure --enable-manager=no --enable-profiler=gprof ${COMMON} CPPFLAGS="${VARS}"
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} -j${CORES}
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} install
if [ "$?" != 0 ]; then
exit 1
fi
cd src/evol
if [ "$?" != 0 ]; then
exit 1
fi
./build.sh gprof
if [ "$?" != 0 ]; then
exit 1
fi
elif [[ "${CMD}" == "server" ]]; then
./configure --enable-sanitize ${COMMON} CPPFLAGS="${VARS}"
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} -j${CORES}
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} install
if [ "$?" != 0 ]; then
exit 1
fi
elif [[ "${CMD}" == "static" ]]; then
./configure LIBS="-lmysqlclient -lssl -lcrypto -pthread -lm -lz" --disable-64bit --enable-static ${COMMON}
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} -j${CORES}
if [ "$?" != 0 ]; then
exit 1
fi
elif [[ "${CMD}" == "static64" ]]; then
./configure --enable-static ${COMMON} CPPFLAGS="${VARS}"
if [ "$?" != 0 ]; then
exit 1
fi
${MAKE} -j${CORES}
if [ "$?" != 0 ]; then
exit 1
fi
fi
echo "OK"
|