jjb: babeltrace: disable spurious warnings on GCC 4.8
[lttng-ci.git] / scripts / babeltrace / build.sh
CommitLineData
51c9c62d 1#!/bin/bash
890bff23 2#
1ad4c3d0
MJ
3# SPDX-FileCopyrightText: 2015 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4# SPDX-FileCopyrightText: 2016-2023 Michael Jeanson <mjeanson@efficios.com>
5# SPDX-License-Identifier: GPL-2.0-or-later
890bff23 6
51c9c62d
MJ
7set -exu
8
a0b535b2
MJ
9# Version compare functions
10vercomp () {
11 set +u
12 if [[ "$1" == "$2" ]]; then
13 return 0
14 fi
15 local IFS=.
6946ebc0
SM
16 # Ignore the shellcheck warning, we want splitting to happen based on IFS.
17 # shellcheck disable=SC2206
a0b535b2
MJ
18 local i ver1=($1) ver2=($2)
19 # fill empty fields in ver1 with zeros
20 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
21 ver1[i]=0
22 done
23 for ((i=0; i<${#ver1[@]}; i++)); do
24 if [[ -z ${ver2[i]} ]]; then
25 # fill empty fields in ver2 with zeros
26 ver2[i]=0
27 fi
28 if ((10#${ver1[i]} > 10#${ver2[i]})); then
29 return 1
30 fi
31 if ((10#${ver1[i]} < 10#${ver2[i]})); then
32 return 2
33 fi
34 done
35 set -u
36 return 0
37}
38
6946ebc0
SM
39# Shellcheck flags the following functions that are unused as "unreachable",
40# ignore that.
41
42# shellcheck disable=SC2317
a0b535b2 43verlte() {
6946ebc0
SM
44 vercomp "$1" "$2"
45 local res="$?"
a0b535b2
MJ
46 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
47}
48
6946ebc0 49# shellcheck disable=SC2317
a0b535b2
MJ
50verlt() {
51 vercomp "$1" "$2"; local res="$?"
52 [ "$res" -eq "2" ]
53}
54
6946ebc0 55# shellcheck disable=SC2317
a0b535b2
MJ
56vergte() {
57 vercomp "$1" "$2"; local res="$?"
58 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
59}
60
6946ebc0 61# shellcheck disable=SC2317
a0b535b2
MJ
62vergt() {
63 vercomp "$1" "$2"; local res="$?"
64 [ "$res" -eq "1" ]
65}
66
6946ebc0 67# shellcheck disable=SC2317
a0b535b2
MJ
68verne() {
69 vercomp "$1" "$2"; local res="$?"
70 [ "$res" -ne "0" ]
71}
72
1ad4c3d0
MJ
73print_header() {
74 set +x
75
76 local message=" $1 "
77 local message_len
78 local padding_len
79
80 message_len="${#message}"
81 padding_len=$(( (80 - (message_len)) / 2 ))
82
83 printf '\n'; printf -- '#%.0s' {1..80}; printf '\n'
84 printf -- '-%.0s' {1..80}; printf '\n'
85 printf -- '#%.0s' $(seq 1 $padding_len); printf '%s' "$message"; printf -- '#%.0s' $(seq 1 $padding_len); printf '\n'
86 printf -- '-%.0s' {1..80}; printf '\n'
87 printf -- '#%.0s' {1..80}; printf '\n\n'
88
89 set -x
90}
91
51c9c62d
MJ
92failed_configure() {
93 # Assume we are in the configured build directory
1ad4c3d0 94 print_header "BEGIN config.log"
51c9c62d 95 cat config.log
1ad4c3d0 96 print_header "END config.log"
51c9c62d
MJ
97 exit 1
98}
99
1ad4c3d0 100print_header "Babeltrace build script starting"
51c9c62d 101
07dafe32
MJ
102# Required variables
103WORKSPACE=${WORKSPACE:-}
104
1ad4c3d0 105# Axis
776b0d3d 106platform=${platform:-}
a57a60d9
MJ
107conf=${conf:-}
108build=${build:-}
6476f917 109cc=${cc:-}
a57a60d9 110
1ad4c3d0
MJ
111# Build steps that can be overriden by the environment
112BABELTRACE_MAKE_INSTALL="${BABELTRACE_MAKE_INSTALL:-yes}"
113BABELTRACE_MAKE_CLEAN="${BABELTRACE_MAKE_CLEAN:-yes}"
114BABELTRACE_GEN_COMPILE_COMMANDS="${BABELTRACE_GEN_COMPILE_COMMANDS:-no}"
115BABELTRACE_RUN_TESTS="${BABELTRACE_RUN_TESTS:-yes}"
116BABELTRACE_CLANG_TIDY="${BABELTRACE_CLANG_TIDY:-no}"
c56b9301 117
e6be9fb0
MJ
118SRCDIR="$WORKSPACE/src/babeltrace"
119TMPDIR="$WORKSPACE/tmp"
07dafe32 120PREFIX="/build"
4afa623f 121LIBDIR="lib"
32dde2a3 122LIBDIR_ARCH="$LIBDIR"
4afa623f
MJ
123
124# RHEL and SLES both use lib64 but don't bother shipping a default autoconf
125# site config that matches this.
47ca4354 126if [[ ( -f /etc/redhat-release || -f /etc/products.d/SLES.prod || -f /etc/yocto-release ) ]]; then
85322e5d
MJ
127 # Detect the userspace bitness in a distro agnostic way
128 if file -L /bin/bash | grep '64-bit' >/dev/null 2>&1; then
129 LIBDIR_ARCH="${LIBDIR}64"
85322e5d 130 fi
4afa623f 131fi
275b59d2 132
1ad4c3d0
MJ
133exit_status=0
134
135# Use bear to generate compile_commands.json when enabled
136BEAR=""
137if [ "$BABELTRACE_GEN_COMPILE_COMMANDS" = "yes" ]; then
138 BEAR="bear"
139fi
140
07dafe32
MJ
141# Create tmp directory
142rm -rf "$TMPDIR"
143mkdir -p "$TMPDIR"
e6be9fb0 144
0e9967db 145export TMPDIR
72d087d4 146export CFLAGS="-g -O2"
1ad4c3d0 147export CXXFLAGS="-g -O2"
0e9967db 148
6476f917
MJ
149# Set compiler variables
150case "$cc" in
151gcc)
152 export CC=gcc
153 export CXX=g++
154 ;;
0f505d21
MJ
155gcc-*)
156 export CC=gcc-${cc#gcc-}
157 export CXX=g++-${cc#gcc-}
6476f917
MJ
158 ;;
159clang)
160 export CC=clang
161 export CXX=clang++
162 ;;
0f505d21
MJ
163clang-*)
164 export CC=clang-${cc#clang-}
165 export CXX=clang++-${cc#clang-}
6476f917
MJ
166 ;;
167*)
168 if [ "x$cc" != "x" ]; then
1ad4c3d0
MJ
169 echo ""
170 exit 1
6476f917
MJ
171 fi
172 ;;
173esac
174
c56b9301 175# Set platform variables
776b0d3d 176case "$platform" in
f0d7e5b1 177macos*)
a0b535b2
MJ
178 export MAKE=make
179 export TAR=tar
180 export NPROC="getconf _NPROCESSORS_ONLN"
221450b6 181 export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
8b15f123 182 export CFLAGS="$CFLAGS -Wno-\#pragma-messages" # Fix warnings with clang14
07dafe32 183 export CPPFLAGS="-I/opt/local/include"
221450b6 184 export LDFLAGS="-L/opt/local/lib"
00f7bb3f
MJ
185 export PYTHON="python3"
186 export PYTHON_CONFIG="python3-config"
221450b6 187 ;;
07dafe32 188
0f505d21 189freebsd*)
894db5f1
MJ
190 export MAKE=gmake
191 export TAR=tar
192 export NPROC="getconf _NPROCESSORS_ONLN"
193 export CPPFLAGS="-I/usr/local/include"
194 export LDFLAGS="-L/usr/local/lib"
195 export PYTHON="python3"
196 export PYTHON_CONFIG="python3-config"
197
198 # For bt 1.5
199 export YACC="bison -y"
200 ;;
201
87e41bca 202*)
a0b535b2
MJ
203 export MAKE=make
204 export TAR=tar
205 export NPROC=nproc
1f620ba0
MJ
206 export PYTHON="python3"
207 export PYTHON_CONFIG="python3-config"
87e41bca
MJ
208 ;;
209esac
210
332f53da
MJ
211# Some warning flags are very dumb in GCC 4.8 on SLES12 / EL7, disable them
212# even if they are available.
213if [[ $platform = sles12sp5* ]] || [[ $platform = el7* ]]; then
214 CFLAGS="$CFLAGS -Wno-missing-field-initializers -Wno-shadow"
215 CXXFLAGS="$CXXFLAGS -Wno-missing-field-initializers -Wno-shadow"
216fi
217
51c9c62d 218# Print build env details
1ad4c3d0 219print_header "Build environment details"
8c956c4b 220print_hardware || true
51c9c62d
MJ
221print_os || true
222print_tooling || true
223
a0b535b2
MJ
224# Enter the source directory
225cd "$SRCDIR"
226
227# Run bootstrap in the source directory prior to configure
1ad4c3d0 228print_header "Bootstrap autotools"
a0b535b2
MJ
229./bootstrap
230
231# Get source version from configure script
232eval "$(grep '^PACKAGE_VERSION=' ./configure)"
07dafe32 233PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
a0b535b2 234
11ba7264 235# Enable dev mode by default for BT 2.0 builds
9201e00d
MJ
236export BABELTRACE_DEBUG_MODE=1
237export BABELTRACE_DEV_MODE=1
8130d845 238export BABELTRACE_MINIMAL_LOG_LEVEL=TRACE
11ba7264 239
07dafe32
MJ
240# Set configure options and environment variables for each build
241# configuration.
1ad4c3d0 242CONF_OPTS=("--prefix=$PREFIX" "--libdir=$PREFIX/$LIBDIR_ARCH" "--disable-maintainer-mode")
f0d7e5b1
MJ
243
244# -Werror is enabled by default in stable-2.0 but won't be in 2.1
245# Explicitly disable it for consistency.
246if vergte "$PACKAGE_VERSION" "2.0"; then
1ad4c3d0 247 CONF_OPTS+=("--disable-Werror")
f0d7e5b1
MJ
248fi
249
275b59d2
JRJ
250case "$conf" in
251static)
1ad4c3d0 252 print_header "Conf: Static lib only"
1f620ba0
MJ
253
254 CONF_OPTS+=("--enable-static" "--disable-shared")
255
a0b535b2 256 if vergte "$PACKAGE_VERSION" "2.0"; then
1f620ba0 257 CONF_OPTS+=("--enable-built-in-plugins")
a0b535b2 258 fi
275b59d2 259 ;;
1f620ba0 260
221450b6 261python-bindings)
1ad4c3d0 262 print_header "Conf: Python bindings"
1f620ba0
MJ
263
264 CONF_OPTS+=("--enable-python-bindings")
a0b535b2
MJ
265
266 if vergte "$PACKAGE_VERSION" "2.0"; then
1f620ba0 267 CONF_OPTS+=("--enable-python-bindings-doc" "--enable-python-plugins")
a0b535b2 268 fi
275b59d2 269 ;;
1f620ba0 270
0d30552d 271prod)
1ad4c3d0 272 print_header "Conf: Production"
9201e00d
MJ
273
274 # Unset the developper variables
275 unset BABELTRACE_DEBUG_MODE
276 unset BABELTRACE_DEV_MODE
277 unset BABELTRACE_MINIMAL_LOG_LEVEL
278
279 # Enable the python bindings
301b8fc9
MJ
280 CONF_OPTS+=("--enable-python-bindings" "--enable-python-plugins")
281 ;;
282
283doc)
1ad4c3d0 284 print_header "Conf: Documentation"
301b8fc9
MJ
285
286 CONF_OPTS+=("--enable-python-bindings" "--enable-python-bindings-doc" "--enable-python-plugins" "--enable-api-doc")
9201e00d 287 ;;
1f620ba0 288
1b232bc6 289asan)
1ad4c3d0 290 print_header "Conf: Address Sanitizer"
1b232bc6
SM
291
292 # --enable-asan was introduced after 2.0 but don't check the version, we
293 # want this configuration to fail if ASAN is unavailable.
294 CONF_OPTS+=("--enable-asan" "--enable-python-bindings" "--enable-python-plugins")
295 ;;
296
0d30552d 297min)
1ad4c3d0 298 print_header "Conf: Minimal"
0d30552d 299 ;;
1f620ba0 300
275b59d2 301*)
1ad4c3d0 302 print_header "Conf: Standard"
0d30552d 303
1f620ba0 304 # Enable the python bindings / plugins by default with babeltrace2,
0d30552d
MJ
305 # the test suite is mostly useless without it.
306 if vergte "$PACKAGE_VERSION" "2.0"; then
1f620ba0 307 CONF_OPTS+=("--enable-python-bindings" "--enable-python-plugins")
0d30552d 308 fi
6871000c
MJ
309
310 # Something is broken in docbook-xml on yocto
311 if [[ "$platform" = yocto* ]]; then
312 CONF_OPTS+=("--disable-man-pages")
313 fi
275b59d2
JRJ
314 ;;
315esac
316
aad6ac90 317# Build type
07dafe32
MJ
318# oot : out-of-tree build
319# dist : build via make dist
320# oot-dist: build via make dist out-of-tree
321# * : normal tree build
aad6ac90 322#
07dafe32 323# Make sure to move to the build directory and run configure
1f620ba0 324# before continuing.
aad6ac90 325case "$build" in
b8475d72 326oot)
1ad4c3d0 327 print_header "Build: Out of tree"
b8475d72
MJ
328
329 # Create and enter a temporary build directory
330 builddir=$(mktemp -d)
331 cd "$builddir"
332
51c9c62d 333 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
b8475d72 334 ;;
1f620ba0 335
b8475d72 336dist)
1ad4c3d0 337 print_header "Build: Distribution In-tree"
1f620ba0 338
b8475d72
MJ
339 # Run configure and generate the tar file
340 # in the source directory
51c9c62d 341 ./configure || failed_configure
b8475d72 342 $MAKE dist
c56b9301 343
b8475d72
MJ
344 # Create and enter a temporary build directory
345 builddir=$(mktemp -d)
346 cd "$builddir"
347
348 # Extract the distribution tar in the build directory,
349 # ignore the first directory level
350 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
351
07dafe32 352 # Build in extracted source tree
51c9c62d 353 ./configure "${CONF_OPTS[@]}" || failed_configure
b8475d72 354 ;;
c56b9301 355
b8475d72 356oot-dist)
1ad4c3d0 357 print_header "Build: Distribution Out of tree"
c56b9301 358
b8475d72
MJ
359 # Create and enter a temporary build directory
360 builddir=$(mktemp -d)
361 cd "$builddir"
c56b9301 362
b8475d72 363 # Run configure out of tree and generate the tar file
51c9c62d 364 "$SRCDIR/configure" || failed_configure
b8475d72 365 $MAKE dist
c56b9301 366
b8475d72
MJ
367 dist_srcdir="$(mktemp -d)"
368 cd "$dist_srcdir"
c56b9301 369
b8475d72
MJ
370 # Extract the distribution tar in the new source directory,
371 # ignore the first directory level
372 $TAR xvf "$builddir"/*.tar.* --strip 1
373
374 # Create and enter a second temporary build directory
375 builddir="$(mktemp -d)"
376 cd "$builddir"
377
378 # Run configure from the extracted distribution tar,
379 # out of the source tree
51c9c62d 380 "$dist_srcdir/configure" "${CONF_OPTS[@]}" || failed_configure
b8475d72
MJ
381 ;;
382
383*)
1ad4c3d0 384 print_header "Build: Standard In-tree"
51c9c62d 385 ./configure "${CONF_OPTS[@]}" || failed_configure
b8475d72 386 ;;
aad6ac90
JR
387esac
388
1f620ba0
MJ
389# We are now inside a configured build directory
390
c56b9301 391# BUILD!
1ad4c3d0
MJ
392print_header "BUILD!"
393$BEAR ${BEAR:+--} $MAKE -j "$($NPROC)" V=1
394
395# Install in the workspace if enabled
396if [ "$BABELTRACE_MAKE_INSTALL" = "yes" ]; then
397 print_header "Install"
398
399 $MAKE install V=1 DESTDIR="$WORKSPACE"
400
401 # Cleanup rpath in executables and shared libraries
402 find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
403 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.so" -exec chrpath --delete {} \;
404
405 # Remove libtool .la files
406 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.la" -delete
407fi
408
409# Run clang-tidy on the topmost commit
410if [ "$BABELTRACE_CLANG_TIDY" = "yes" ]; then
411 print_header "Run clang-tidy"
07dafe32 412
1ad4c3d0
MJ
413 # This would be better by linting only the lines touched by a patch but it
414 # doesn't seem to work, the lines are always filtered and no error is
415 # reported.
416 #git diff -U0 HEAD^ | clang-tidy-diff -p1 -j "$($NPROC)" -timeout 60 -fix
c56b9301 417
1ad4c3d0
MJ
418 # Instead, run clan-tidy on all the files touched by the patch.
419 while read -r filepath; do
420 if [[ "$filepath" =~ (\.cpp|\.hhp|\.c|\.h)$ ]]; then
421 clang-tidy --fix-errors "$(realpath "$filepath")"
422 fi
423 done < <(git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD)
424
425 # If the tree has local changes, the formatting was incorrect
426 GIT_DIFF_OUTPUT=$(git diff)
427 if [ -n "$GIT_DIFF_OUTPUT" ]; then
428 echo "Saving clang-tidy proposed fixes in clang-tidy-fixes.diff"
429 git diff > "$WORKSPACE/clang-tidy-fixes.diff"
430
431 # Restore the unfixed files so they can be viewed in the warnings web
432 # interface
433 git checkout .
434 exit_status=1
435 fi
436fi
437
438# Run tests if enabled
e3c32202 439if [ "$BABELTRACE_RUN_TESTS" = "yes" ]; then
1ad4c3d0 440 print_header "Run test suite"
e3c32202 441
1ad4c3d0
MJ
442 # Run tests, don't fail now, we want to run the archiving steps
443 $MAKE --keep-going check || exit_status=1
e3c32202 444
1ad4c3d0
MJ
445 # Copy tap logs for the jenkins tap parser before cleaning the build dir
446 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
4174b905 447
1ad4c3d0
MJ
448 # Copy the test suites top-level log which includes all tests failures
449 rsync -a --include 'test-suite.log' --include '*/' --exclude='*' tests/ "$WORKSPACE/log"
649c39a6
MJ
450fi
451
e6be9fb0 452# Clean the build directory
1ad4c3d0
MJ
453if [ "$BABELTRACE_MAKE_CLEAN" = "yes" ]; then
454 print_header "Clean"
455 $MAKE clean
456fi
c56b9301 457
1ad4c3d0 458print_header "Babeltrace build script ended with: $(test $exit_status == 0 && echo SUCCESS || echo FAILURE)"
87e41bca 459
1d56e325 460# Exit with failure if any of the tests failed
1ad4c3d0 461exit $exit_status
9d56171a 462
87e41bca 463# EOF
1ad4c3d0 464# vim: expandtab tabstop=4 shiftwidth=4
This page took 0.061049 seconds and 4 git commands to generate.