Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/extra/qt5-base/PKGBUILD
blob: 7b301389e26b437f1799c3d9828c415576771688 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
if [ "$CARCH" = 'i486' -o "$CARCH" = 'i686' ]; then
  eval "$(
    declare -f build | \
      sed '
        s@./configure@./configure -no-sse2@g
      '
  )"
fi

# enable XCB explicitely for now on i486 (rather fail early than to
# get weird startup messages of Qt5 applications hours later)
if [ "$CARCH" = 'i486' ]; then
  eval "$(
    declare -f build | \
      sed '
        s/configure/configure -xcb /
      '
  )"  
fi

# no LTO on i486
if [ "$CARCH" = 'i486' ]; then
  sed -i '
    1i options=(!lto)
  ' PKGBUILD
fi
if [ "$CARCH" = 'i486' ]; then
  eval "$(
    declare -f build | \
      sed '
        s/-ltcg/-no-ltcg/
        s/\(.*qmake *\)CONFIG+=fat-static-lto\(.*\)/\1 \2/
      '
  )"  
fi
# -no-ltcg is partially ignored, patching it directly in the mkspecs
source+=('qtbase-no-ltcg-broken.patch')
sha256sums+=('024549dbb8cc76921c16070b4cf1253e88fd33f78d6756e2ee398c405b8d1979')
if [ "$CARCH" = 'i486' ]; then
  eval "$(
    declare -f prepare | \
      sed '
        $ i \
          patch -p1 < ../qtbase-no-ltcg-broken.patch
      '
  )"
fi