blob: bb187f600b402f0f7233e403af43f4ccf8c662e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# hotfix for FS$63334 (test crashes due to too agressive symbol elimination)
eval "$(
declare -f build | \
sed '
/configure/ i \
export LDFLAGS="-Wl,-O1,--sort-common,-z,relro,-z,now"
'
declare -f check | \
sed '
/make/ i \
export LDFLAGS="-Wl,-O1,--sort-common,-z,relro,-z,now"
'
)"
|