blob: d64993946470d6418ef502221f71fe1c796a1c9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# break cycle with gst-plugins-bad on i486
if [ "$CARCH" = 'i486' ]; then
makedepends=(${makedepends[@]//gst-plugins-bad/})
fi
# linker runs out of memory on 32-bit
eval "$(
declare -f build | \
sed '
3 i LDFLAGS+=" -Wl,--no-keep-memory"
3 i CFLAGS+=" -g1"
3 i CXXFLAGS+=" -g1"
'
)"
|