blob: 9d67600069efb3150b0cafe1cbbf3f8b99ce7841 (
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
|
# Maintainer : Daniel Bermond <dbermond@archlinux.org>
# Contributor: ValentÃn Kivachuk <vk18496@gmail.com>
_target=mips64-linux-gnu
pkgname="${_target}-binutils"
pkgver=2.43
pkgrel=1
pkgdesc='Tools to assemble and manipulate binary and object files for the MIPS64 target (for the toolchain with GNU C library and multilib ABI)'
arch=('x86_64')
url='https://www.gnu.org/software/binutils/'
license=('GPL-3.0-or-later')
depends=('libelf' 'zlib')
options=('!emptydirs' 'staticlibs' '!distcc' '!ccache')
source=("https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.xz"{,.sig})
sha256sums=('b53606f443ac8f01d1d5fc9c39497f2af322d99e14cea5c0b4b124d630379365'
'SKIP')
validpgpkeys=('3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton
prepare() {
mkdir -p build
}
build() {
cd build
"${srcdir}/binutils-${pkgver}/configure" \
--build="$CHOST" \
--host="$CHOST" \
--target="$_target" \
--prefix='/usr' \
--with-sysroot="/usr/${_target}" \
--enable-cet \
--enable-deterministic-archives \
--enable-gold \
--enable-ld='default' \
--enable-lto \
--enable-plugins \
--enable-relro \
--enable-threads \
--enable-multilib \
--disable-gdb \
--disable-werror \
--with-debuginfod \
--with-pic \
--with-system-zlib \
--with-gnu-as \
--with-gnu-ld
make
}
check() {
# unset LDFLAGS as testsuite makes assumptions about which ones are active
# ignore failures in gold testsuite...
make -C build -k LDFLAGS='' check || true
}
package() {
make -C build DESTDIR="$pkgdir" install
# remove unwanted Windows files
rm "${pkgdir}/usr/share/man/man1/${_target}"-{dlltool,windmc,windres}*
# remove conflicting files
rm -r "${pkgdir}/usr"/{lib/bfd-plugins,share/{info,locale}}
# replace cross-directory hardlinks with symlinks
local _file
rm "${pkgdir}/usr/${_target}/bin"/*
while read -r -d '' _file
do
ln -s "../../bin/${_file##*/}" "${pkgdir}/usr/${_target}/bin/${_file##*"${_target}-"}"
done < <(find "${pkgdir}/usr/bin" -type f -print0)
}
|