blob: 223a7cb81c0984932e31aa5bc9a5d93e672dd1ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# some tests run into timeouts
eval "$(
declare -f check | \
sed '
s/\(meson test -C build\)/\1 || true/
'
)"
# disabling LTO on i486 in EFI, fails with undefined entry point efi_main
if [ "${CARCH}" = "i486" ]; then
eval "$(
declare -f build | \
sed '
/local _meson_options.*/ a \
_meson_options+=(-Db_lto=false)
'
)"
fi
|