blob: c8838aefdaa36630fc7f9bcda4d1b3f7cb94ce81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# -latomic on i486
if [ "$CARCH" == 'i486' ]; then
eval "$(
declare -f build | \
sed '
s/cmake /cmake -DCMAKE_CXX_STANDARD_LIBRARIES=-latomic /
'
)"
fi
# just for now we don't test on i486, we have to do real tests on a
# real old CPU, in chroots the tests are running, on the real thing
# they hang (presumably some opcodes are missing or not doing exactly
# what they do in emulation)..
# for now it's more important to unstuck the package and build the
# rest on top
if [ "$CARCH" == 'i486' ]; then
unset check
fi
# ignore some errors in test
if [ "$CARCH" == 'i486' ]; then
eval "$(
declare -f build | \
sed '
/CXXFLAGS/ a export CXXFLAGS="$CXXFLAGS -Wno-error=array-bounds -Wno-error=use-after-free"
'
)"
fi
|