2018-05-29 14:42:43 +00:00
|
|
|
#! /bin/sh -e
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
|
|
|
|
# Run meson to auto-configure the various builds.
|
|
|
|
# * all builds get put in a directory whose name starts with "build-"
|
|
|
|
# * if a build-directory already exists we assume it was properly configured
|
|
|
|
# Run ninja after configuration is done.
|
|
|
|
|
2019-02-25 15:40:01 +00:00
|
|
|
srcdir=$(dirname $(readlink -f $0))/..
|
2018-05-29 14:42:43 +00:00
|
|
|
MESON=${MESON:-meson}
|
2018-09-14 16:17:17 +00:00
|
|
|
use_shared="--default-library=shared"
|
2018-05-29 14:42:43 +00:00
|
|
|
|
2018-06-29 17:27:36 +00:00
|
|
|
if command -v ninja >/dev/null 2>&1 ; then
|
|
|
|
ninja_cmd=ninja
|
|
|
|
elif command -v ninja-build >/dev/null 2>&1 ; then
|
|
|
|
ninja_cmd=ninja-build
|
|
|
|
else
|
|
|
|
echo "ERROR: ninja is not found" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-05-29 14:42:43 +00:00
|
|
|
build () # <directory> <meson options>
|
|
|
|
{
|
|
|
|
builddir=$1
|
|
|
|
shift
|
2019-01-10 10:37:26 +00:00
|
|
|
if [ ! -f "$builddir/build.ninja" ] ; then
|
2018-05-29 14:42:43 +00:00
|
|
|
options="--werror -Dexamples=all $*"
|
|
|
|
echo "$MESON $options $srcdir $builddir"
|
|
|
|
$MESON $options $srcdir $builddir
|
|
|
|
unset CC
|
|
|
|
fi
|
2018-06-29 17:27:36 +00:00
|
|
|
echo "$ninja_cmd -C $builddir"
|
|
|
|
$ninja_cmd -C $builddir
|
2018-05-29 14:42:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# shared and static linked builds with gcc and clang
|
|
|
|
for c in gcc clang ; do
|
|
|
|
for s in static shared ; do
|
|
|
|
export CC="ccache $c"
|
|
|
|
build build-$c-$s --default-library=$s
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
# test compilation with minimal x86 instruction set
|
2018-09-14 16:17:17 +00:00
|
|
|
build build-x86-default -Dmachine=nehalem $use_shared
|
2018-05-29 14:42:43 +00:00
|
|
|
|
|
|
|
# enable cross compilation if gcc cross-compiler is found
|
2018-06-29 17:27:38 +00:00
|
|
|
c=aarch64-linux-gnu-gcc
|
|
|
|
if command -v $c >/dev/null 2>&1 ; then
|
|
|
|
# compile the general v8a also for clang to increase coverage
|
|
|
|
export CC="ccache clang"
|
2018-09-14 16:17:17 +00:00
|
|
|
build build-arm64-host-clang $use_shared \
|
|
|
|
--cross-file config/arm/arm64_armv8_linuxapp_gcc
|
2018-06-29 17:27:38 +00:00
|
|
|
|
|
|
|
for f in config/arm/arm*gcc ; do
|
|
|
|
export CC="ccache gcc"
|
|
|
|
build build-$(basename $f | tr '_' '-' | cut -d'-' -f-2) \
|
2018-09-14 16:17:17 +00:00
|
|
|
$use_shared --cross-file $f
|
2018-06-29 17:27:38 +00:00
|
|
|
done
|
|
|
|
fi
|