mirror of
https://github.com/flatpak/flatpak.git
synced 2026-04-04 07:11:28 -04:00
f28 default cflags are picked up by g-ir-scanner and they don't work with clang as per: https://bugzilla.redhat.com/show_bug.cgi?id=1543295 Closes: #1741 Approved by: alexlarsson
20 lines
577 B
Bash
Executable File
20 lines
577 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Install build dependencies, run unit tests and installed tests.
|
|
|
|
set -xeuo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
${dn}/build.sh
|
|
make check
|
|
|
|
if test -x /usr/bin/clang; then
|
|
git clean -dfx && git submodule foreach git clean -dfx
|
|
# And now a clang build to find unused variables; perhaps
|
|
# in the future these could parallelize
|
|
export CC=clang
|
|
export CFLAGS='-Werror=unused-variable'
|
|
# We disable introspection because it fails with clang: https://bugzilla.redhat.com/show_bug.cgi?id=1543295
|
|
build --disable-introspection
|
|
fi
|