Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/extra/firefox/PKGBUILD
blob: 2fb535bfd559eaf6b655a3b98dbee9d335d6d786 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# disable LTO as it has little benefit and uses too many resources
# don't compile with clang, use gcc toolchain (clang has issues on IA32)
# TODO: document the rest..
source+=('mozconfig.patch')
sha256sums+=('708605f390994587277d8357e8452a71fcbfab97394df9678b1b646539e4ce20')
eval "$(
  declare -f build | \
    sed '
      2 a export RUSTFLAGS+=" -Cdebuginfo=0 -Clto=off"
      2 a export LDFLAGS+=" -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
    '
  declare -f prepare | \
    sed '
      $ i export MOZ_SOURCE_CHANGESET="DEVEDITION_${pkgver//./_}_RELEASE"
      $ i patch -d .. -Np1 -i "$srcdir/mozconfig.patch"
    '
)"

# do not build a first firefox, run it in headless X just to produce
# some profiling data and build it again. the penalty of using a 32-bit
# build is high enough, so optimizing based on profiling data will not
# be that helpfull IMHO.
eval "$(
  declare -f build | \
    sed '
      /.\/mach package/,/.\/mach build/d
    '
)"

# use locally cached version of firefox sources
# TODO: think about how to put this into helper functions
for ((i=0; i<${#source[@]}; i++)); do
  infos=$(
    printf '%s\n' "${source[${i}]}" | \
      sed -n '
        s@^\(\([^:]\+\)::\)\?\(git\|hg\)+\([^?#]\+\)\(?signed\)\?#\(\(tag\|commit\)=\S\+\)$@\3 \2 \4 \5 \6@
        T
        p
      '
  )
  if [ -n "${infos}" ]; then
    source[${i}]=$(
      type="${infos%% *}"
      infos="${infos#* }"
      if [ -n "${infos%% *}" ]; then
        prefix="${infos%% *}"
      else
        prefix=''
      fi
      infos="${infos#* }"
      repo="${infos%% *}"
      repo64=$(
        printf '%s' "${repo}" | \
          base64 -w0 | \
          sed 's/=/%3D/g'
      )
      infos="${infos#* }"
      if [ "${infos%% *}" = '?signed' ]; then
        key_check=$(
          printf '&valid_keys='
          printf '%s,' "${validpgpkeys[@]}" | \
            sed 's/,$//'
        )
      else
        key_check=''
      fi
      infos="${infos#* }"
      if [ -z "${prefix}" ]; then
        prefix="${repo%.git}"
        prefix="${prefix##*/}"
      fi
      prefix_64=$(
        printf '%s/' "${prefix}" | \
          base64 -w0 | \
          sed 's/=/%3D/g'
      )

      printf '%s-%s.tar.gz::https://archive-server.archlinux32.org/?t=%s&p=%s&r=%s%s&%s\n' \
        "${prefix}" \
        "${pkgver}" \
        "${type}" \
        "${prefix_64}" \
        "${repo64}" \
        "${key_check}" \
        "${infos}"
    )
  fi
done

# from VoidLinux, avoid excessive debug symbols in rust leading
# to out-of-memory situations
eval "$(
  declare -f build | \
    sed '
      5 a sed -i "s/debug_info = '\''2'\''/debug_info = '\''0'\''/" build/moz.configure/toolchain.configure
    '
)"

# don't kill build slaves by auto-guessing available CPU cores
eval "$(
  declare -f build | \
    sed '
      2 a export MOZ_MAKE_FLAGS=-j1
    '
)"

# test failure in rust code (complaining about network functions) when PGO is used,
# see https://bugzilla.mozilla.org/show_bug.cgi?id=1565757
source+=('rust-static-disable-network-test-on-static-libraries.patch')
sha256sums+=('7ef04324ca732df50fc33f21d8e7027c43e3c7c3a51d2332dd44853910315a67')
eval "$(
  declare -f prepare | \
    sed '
      $ i patch -p1 -i "$srcdir/rust-static-disable-network-test-on-static-libraries.patch"
    '
)"

# gcc and cross PGO are not best friends, disable PGO
eval "$(
  declare -f build | \
    sed '
      /--enable-profile-generate=cross/d
      /--with-pgo-profile-path=/d
      /--with-pgo-jarlog=/d
    '
)"

# readelf: Error: Unable to seek to 0x801db328 for section headers
source+=('avoid-libxul-OOM-python-check.patch')
sha256sums+=('6395b7e349963c9a689929b44525159328954af156ef0b9a42182e7e16baa8ba')
eval "$(
  declare -f prepare | \
    sed '
      $ i patch -p1 -i "$srcdir/avoid-libxul-OOM-python-check.patch"
    '
)"

# libxul.so cannot find it's libraries
eval "$(
  declare -f package | \
    sed '
      /}/ i \
        install -dm 755 "${pkgdir}/etc/ld.so.conf.d" \
        echo "/usr/lib/${pkgname}" > "${pkgdir}"/etc/ld.so.conf.d/${pkgname}.conf \
    '
)"

# do not do profiling: it doesn't find libraries:
# "XPCOMGlueLoad error for file /build/firefox/src/firefox-70.0/obj-i686-pc-linux-gnu/dist/firefox/libxul.so:
#libmozsandbox.so: cannot open shared object file: No such file or directory
# Couldn't load XPCOM.
# ..or it will for sure run out of memory
eval "$(
  declare -f build | \
    sed '
      /msg2 "Profiling instrumented browser..."/,/.\/mach build/d
    '
)"