xref: /dpdk/devtools/test-meson-builds.sh (revision e00a5eaa)
1#! /bin/sh -e
2# SPDX-License-Identifier: BSD-3-Clause
3# Copyright(c) 2018 Intel Corporation
4
5# Run meson to auto-configure the various builds.
6# * all builds get put in a directory whose name starts with "build-"
7# * if a build-directory already exists we assume it was properly configured
8# Run ninja after configuration is done.
9
10set -o pipefail
11
12srcdir=$(dirname $(readlink -f $0))/..
13MESON=${MESON:-meson}
14use_shared="--default-library=shared"
15
16if command -v ninja >/dev/null 2>&1 ; then
17	ninja_cmd=ninja
18elif command -v ninja-build >/dev/null 2>&1 ; then
19	ninja_cmd=ninja-build
20else
21	echo "ERROR: ninja is not found" >&2
22	exit 1
23fi
24
25build () # <directory> <meson options>
26{
27	builddir=$1
28	shift
29	if [ ! -f "$builddir/build.ninja" ] ; then
30		options="--werror -Dexamples=all $*"
31		echo "$MESON $options $srcdir $builddir"
32		$MESON $options $srcdir $builddir
33		unset CC
34	fi
35	if [ -n "$TEST_MESON_BUILD_VERY_VERBOSE" ] ; then
36		# for full output from ninja use "-v"
37		echo "$ninja_cmd -v -C $builddir"
38		$ninja_cmd -v -C $builddir
39	elif [ -n "$TEST_MESON_BUILD_VERBOSE" ] ; then
40		# for keeping the history of short cmds, pipe through cat
41		echo "$ninja_cmd -C $builddir | cat"
42		$ninja_cmd -C $builddir | cat
43	else
44		echo "$ninja_cmd -C $builddir"
45		$ninja_cmd -C $builddir
46	fi
47}
48
49if [ "$1" == "-vv" ] ; then
50	TEST_MESON_BUILD_VERY_VERBOSE=1
51elif [ "$1" == "-v" ] ; then
52	TEST_MESON_BUILD_VERBOSE=1
53fi
54
55# shared and static linked builds with gcc and clang
56for c in gcc clang ; do
57	for s in static shared ; do
58		export CC="ccache $c"
59		build build-$c-$s --default-library=$s
60	done
61done
62
63# test compilation with minimal x86 instruction set
64build build-x86-default -Dmachine=nehalem $use_shared
65
66# enable cross compilation if gcc cross-compiler is found
67c=aarch64-linux-gnu-gcc
68if command -v $c >/dev/null 2>&1 ; then
69	# compile the general v8a also for clang to increase coverage
70	export CC="ccache clang"
71	build build-arm64-host-clang $use_shared \
72		--cross-file config/arm/arm64_armv8_linux_gcc
73
74	for f in config/arm/arm*gcc ; do
75		export CC="ccache gcc"
76		build build-$(basename $f | tr '_' '-' | cut -d'-' -f-2) \
77			$use_shared --cross-file $f
78	done
79fi
80