summaryrefslogtreecommitdiff
path: root/core/glibc/PKGBUILD
blob: 12033416b0349a156b0b87640ce7a4dbcfb5d616 (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
# remove lib32-* stuff

pkgname=(${pkgname[@]/lib32-*/})
unset -f 'package_lib32-glibc'

eval "$(
  declare -f build | \
    sed '
      2 a export CFLAGS="$CFLAGS -mno-tls-direct-seg-refs"
      s,https://bugs.archlinux.org/,https://bugs.archlinux32.org/,
      \,cd .*/lib32-glibc-build,{
        s/.*/}/
        q
      }
    '
  declare -f package_glibc | \
    sed '
      s,usr/lib/libmvec-\*\.so,,
      s/\S*,mvec\S*//
      s,STRIP_BINARIES ,\0usr/bin/lddlibc4 ,
      s,STRIP_STATIC ,\0usr/lib/libm.a ,
    '
)"

# 486-specific
if [ "${CARCH}" = "i486" ]; then
  # no gd for memory profiles
  makedepends=(${makedepends[@]//gd/})

  # disable multilib, we are on 32-bit only
  eval "$(
    declare -f build | \
      sed '
        s@--enable-multi-arch@--disable-multi-arch@
      '
  )"

  # disable testing for now, we run out of memory
  eval "$(
    declare -f check | \
      sed '
        /make check/d
      '
  )"
fi