-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcmake.sh
executable file
·355 lines (332 loc) · 8.67 KB
/
cmake.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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
#!/bin/bash
show_help() {
cat << EOF
Usage: ${0##*/} -n=[yes|no] -v
This program build Centreon-broker
-f|--force : force rebuild
-r|--release : Build on release mode
-fcr|--force-conan-rebuild : rebuild conan data
-og : C++14 standard
-clang : Compilation with clang++
-mold : Link with mold
-legacy-mold : Link with mold but with an old gcc
-dr : Debug robot enabled
-sccache : Compilation through sccache
-h|--help : help
EOF
}
BUILD_TYPE="Debug"
CONAN_REBUILD="0"
for i in $(cat conanfile.txt) ; do
if [[ "$i" =~ / ]] ; then
if [ ! -d ~/.conan/data/$i ] ; then
echo "The package '$i' is missing"
CONAN_REBUILD="1"
break
fi
fi
done
STD=gnu17
COMPILER=gcc
CC=gcc
CXX=g++
LIBCXX=libstdc++11
WITH_CLANG=OFF
EE=
DR=
MOLD=
for i in "$@"
do
case "$i" in
-f|--force)
echo "Forced rebuild"
force=1
shift
;;
-og)
echo "C++14 applied on this compilation"
STD="gnu14"
shift
;;
-dr|--debug-robot)
echo "DEBUG_ROBOT enabled"
DR="-DDEBUG_ROBOT=ON"
shift
;;
-r|--release)
echo "Release build"
BUILD_TYPE="Release"
shift
;;
-clang)
COMPILER=clang
WITH_CLANG=ON
EE="-e CXX=/usr/bin/clang++ -e CC=/usr/bin/clang -e:b CXX=/usr/bin/clang++ -e:b CC=/usr/bin/clang"
CC=clang
CXX=clang++
shift
;;
-mold)
MOLD="-fuse-ld=mold"
shift
;;
-legacy-mold)
MOLD="-B /usr/bin/mold"
shift
;;
-sccache)
SC="1"
shift
;;
-fcr|--force-conan-rebuild)
echo "Forced conan rebuild"
CONAN_REBUILD="1"
shift
;;
-h|--help)
show_help
exit 2
;;
*)
# unknown option
;;
esac
done
# Am I root?
my_id=$(id -u)
if [ -r /etc/centos-release -o -r /etc/almalinux-release ] ; then
if [ -r /etc/almalinux-release ] ; then
maj="centos$(cat /etc/almalinux-release | awk '{print $3}' | cut -f1 -d'.')"
else
maj="centos$(cat /etc/centos-release | awk '{print $4}' | cut -f1 -d'.')"
fi
v=$(cmake --version)
if [[ "$v" =~ "version 3" ]] ; then
cmake='cmake'
else
if rpm -q cmake3 ; then
cmake='cmake3'
elif [[ "$maj" == "centos7" ]] ; then
yum -y install epel-release cmake3
cmake='cmake3'
else
dnf -y install cmake
cmake='cmake'
fi
fi
if [[ "$maj" == "centos7" ]] ; then
if [[ ! -x /opt/rh/rh-python38 ]] ; then
yum -y install centos-release-scl
yum -y install rh-python38
source /opt/rh/rh-python38/enable
else
echo "python38 already installed"
fi
else
yum -y install gcc-c++
if [[ ! -x /usr/bin/python3 ]] ; then
yum -y install python3
else
echo "python3 already installed"
fi
if ! rpm -q python3-pip ; then
yum -y install python3-pip
else
echo "pip3 already installed"
fi
fi
good=$(gcc --version | awk '/gcc/ && ($3+0)>5.0{print 1}')
if [ ! $good ] ; then
yum -y install centos-release-scl
yum-config-manager --enable rhel-server-rhscl-7-rpms
yum -y install devtoolset-9
ln -s /usr/bin/cmake3 /usr/bin/cmake
source /opt/rh/devtoolset-9/enable
fi
pkgs=(
gcc-c++
ninja-build
rrdtool-devel
gnutls-devel
lua-devel
perl-Thread-Queue
perl-devel
perl-ExtUtils-Embed
perl-srpm-macros
libgcrypt-devel
)
if [[ "$maj" == 'centos8' ]] ; then
dnf config-manager --set-enabled powertools
dnf update
fi
for i in "${pkgs[@]}"; do
if ! rpm -q $i ; then
if [[ "$maj" == 'centos7' ]] ; then
yum install -y $i
elif [[ "$maj" == 'centos8' ]] ; then
yum install -y $i
else
dnf -y install $i
fi
fi
done
elif [ -r /etc/issue ] ; then
maj=$(head -1 /etc/issue | awk '{print $1}')
version=$(head -1 /etc/issue | awk '{print $3}')
if [[ "$version" == "9" ]] ; then
dpkg="dpkg"
else
dpkg="dpkg --no-pager"
fi
v=$(cmake --version)
if [[ "$v" =~ "version 3" ]] ; then
cmake='cmake'
elif [[ "$maj" == "Debian" ]] || [[ "$maj" == "Ubuntu" ]]; then
if $dpkg -l cmake ; then
echo "Bad version of cmake..."
exit 1
else
echo -e "cmake is not installed, you could enter, as root:\n\tapt install -y cmake\n\n"
cmake='cmake'
fi
elif [[ "$maj" == "Raspbian" ]] ; then
if $dpkg -l cmake ; then
echo "Bad version of cmake..."
exit 1
else
echo -e "cmake is not installed, you could enter, as root:\n\tapt install -y cmake\n\n"
cmake='cmake'
fi
else
echo "Bad version of cmake..."
exit 1
fi
if [[ "$maj" == "Debian" ]] || [[ "$maj" == "Ubuntu" ]]; then
pkgs=(
gcc
g++
pkg-config
librrd-dev
libgnutls28-dev
ninja-build
liblua5.3-dev
python3
python3-pip
libperl-dev
libgcrypt20-dev
)
for i in "${pkgs[@]}"; do
if ! $dpkg -l $i | grep "^ii" ; then
if [[ "$my_id" == 0 ]] ; then
apt install -y $i
else
echo -e "The package \"$i\" is not installed, you can install it, as root, with the command:\n\tapt install -y $i\n\n"
exit 1
fi
fi
done
elif [[ "$maj" == "Raspbian" ]] ; then
pkgs=(
gcc
g++
pkg-config
libmariadb3
librrd-dev
libgnutls28-dev
ninja-build
liblua5.3-dev
python3
python3-pip
libperl-dev
libgcrypt20-dev
)
for i in "${pkgs[@]}"; do
if ! $dpkg -l $i | grep "^ii" ; then
if [[ "$my_id" == 0 ]] ; then
apt install -y $i
else
echo -e "The package \"$i\" is not installed, you can install it, as root, with the command:\n\tapt install -y $i\n\n"
exit 1
fi
fi
done
fi
if [[ ! -x /usr/bin/python3 ]] ; then
if [[ "$my_id" == 0 ]] ; then
apt install -y python3
else
echo -e "python3 is not installed, you can enter, as root:\n\tapt install -y python3\n\n"
exit 1
fi
else
echo "python3 already installed"
fi
if ! $dpkg -l python3-pip ; then
if [[ "$my_id" == 0 ]] ; then
apt install -y python3-pip
else
echo -e "python3-pip is not installed, you can enter, as root:\n\tapt install -y python3-pip\n\n"
exit 1
fi
else
echo "pip3 already installed"
fi
fi
if ! pip3 install conan==1.62.0 --upgrade --break-system-packages ; then
pip3 install conan==1.62.0 --upgrade
fi
if which conan ; then
conan=$(which conan)
elif [[ -x /usr/local/bin/conan ]] ; then
conan='/usr/local/bin/conan'
else
conan="$HOME/.local/bin/conan"
fi
if [ ! -d build ] ; then
mkdir build
else
echo "'build' directory already there"
fi
if [ "$force" = "1" ] ; then
echo "Build forced, removing the 'build' directory before recreating it"
rm -rf build
mkdir build
fi
case "$COMPILER" in
clang)
VERSION=$(clang -dumpversion | awk -F '.' '{print $1}')
;;
gcc)
VERSION=$(gcc -dumpversion)
;;
esac
if [ "$CONAN_REBUILD" -eq 1 -o ! -r "$HOME/.conan/profiles/default" ] ; then
echo "Creating default profile"
mkdir -p "$HOME/.conan/profiles"
cat << EOF > "$HOME/.conan/profiles/default"
[settings]
arch=x86_64
build_type=Release
compiler=${COMPILER}
compiler.cppstd=${STD}
compiler.libcxx=libstdc++11
compiler.version=$VERSION
os=Linux
EOF
fi
cd build
echo "$conan install .. --build=missing"
$conan install .. --build=missing
NG="-DNG=ON"
if [ "$SC" -eq 1 ] ; then
SCCACHE="-DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache"
else
SCCACHE=
fi
if [[ "$maj" == "Raspbian" ]] ; then
CC=$CC CXX=$CXX CXXFLAGS="-Wall -Wextra $MOLD" $cmake $DR -DWITH_CLANG=$WITH_CLANG $SCCACHE -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DWITH_TESTING=On -DWITH_MODULE_SIMU=On -DWITH_BENCH=On -DWITH_CREATE_FILES=OFF $NG $* ..
elif [[ "$maj" == "Debian" ]] ; then
CC=$CC CXX=$CXX CXXFLAGS="-Wall -Wextra $MOLD" $cmake $DR -DWITH_CLANG=$WITH_CLANG $SCCACHE -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DWITH_USER_BROKER=centreon-broker -DWITH_USER_ENGINE=centreon-engine -DWITH_GROUP_BROKER=centreon-broker -DWITH_GROUP_ENGINE=centreon-engine -DWITH_TESTING=On -DWITH_PREFIX_LIB_CLIB=/usr/lib64/ -DWITH_MODULE_SIMU=On -DWITH_BENCH=On -DWITH_CREATE_FILES=OFF -DWITH_CONF=OFF $NG $* ..
else
CC=$CC CXX=$CXX CXXFLAGS="-Wall -Wextra $MOLD" $cmake $DR -DWITH_CLANG=$WITH_CLANG $SCCACHE -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DWITH_USER_BROKER=centreon-broker -DWITH_USER_ENGINE=centreon-engine -DWITH_GROUP_BROKER=centreon-broker -DWITH_GROUP_ENGINE=centreon-engine -DWITH_TESTING=On -DWITH_MODULE_SIMU=On -DWITH_BENCH=On -DWITH_CREATE_FILES=OFF -DWITH_CONF=OFF $NG $* ..
fi