Skip to content
Snippets Groups Projects
Commit 7165f0c9 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'check-unknown-meson-options' into 'master'

[repare-build-dir] Check for unknown meson options

See merge request i4/manycore/emper!173
parents 1610b369 9ace7f56
No related branches found
No related tags found
No related merge requests found
Pipeline #60812 passed
......@@ -14,11 +14,13 @@ cd "`dirname "${SCRIPTDIR}"`" > /dev/null
SCRIPTDIR="`pwd`";
popd > /dev/null
DEBUG=false
QUIET=false
while getopts :dq OPT; do
case $OPT in
d)
set -x
DEBUG=true
;;
q)
QUIET=true
......@@ -87,9 +89,27 @@ for var in $(compgen -e); do
MESON_ARGS+=("-D${MESON_BUILD_OPTION_NAME}=${MESON_BUILD_OPTION_VALUE}")
done
LOGFILE=$(mktemp --tmpdir=/var/tmp)
cleanup() {
rm -f "${LOGFILE}"
}
trap cleanup EXIT
if ! $QUIET; then
set -x
fi
exec meson --buildtype=${BUILDTYPE} \
meson --buildtype=${BUILDTYPE} \
${MESON_ARGS[@]} \
"${ABSOLUTE_BUILDDIR}"
"${ABSOLUTE_BUILDDIR}" |\
tee "${LOGFILE}"
if ! $DEBUG; then
set +x
fi
if grep -F "WARNING: Unknown options:" "${LOGFILE}"; then
echo "ERROR: Unknown meson options found"
rm -r "${ABSOLUTE_BUILDDIR}" "${ABSOLUTE_BUILDDIR_SYMLINK}"
exit 1
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment