Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/extra/clisp/PKGBUILD
blob: 16aecfeea3065e673853d14a18cfb3d8d0898e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# no LTO
sed -i "
  /^options=/ a options+=('!lto')
" PKGBUILD
eval "$(
  declare -f build | \
    sed '
      s/-ffat-lto-objects//
    '
)"

# alignment of function (from VoidLinux)
eval "$(
  declare -f build | \
    sed '
      s|./configure|CFLAGS+=" -falign-functions=4" ./configure|
    '
)"