blob: 51800f564fa3101ab4ddf14876abcdb226c58371 (
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
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
# Contributor: Emil Renner Berthing <aur@esmil.dk>
_target=riscv64-linux-gnu
pkgname=$_target-binutils
pkgver=2.36.1
pkgrel=1
pkgdesc='Assemble and manipulate binary and object files for 32-bit and 64-bit RISC-V'
arch=(x86_64)
url='https://gnu.org/software/binutils/'
license=(GPL)
groups=(risc-v)
makedepends=(setconf)
source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz")
sha512sums=('cc24590bcead10b90763386b6f96bb027d7594c659c2d95174a6352e8b98465a50ec3e4088d0da038428abe059bbc4ae5f37b269f31a40fc048072c8a234f4e9')
prepare() {
setconf binutils-$pkgver/libiberty/configure ac_cpp "'\$CPP \$CPPFLAGS -O2'"
}
build() {
cd "binutils-$pkgver"
unset CPPFLAGS
./configure \
--disable-nls \
--enable-deterministic-archives \
--enable-gold \
--enable-ld=default \
--enable-multilib \
--enable-plugins \
--prefix=/usr \
--target=$_target \
--with-gnu-as \
--with-gnu-ld \
--with-sysroot=/usr/$_target \
--with-system-zlib
make
}
check() {
# * Unset LDFLAGS as testsuite makes assumptions about which ones are active.
# * Do not abort on errors - manually check log files.
make -C "binutils-$pkgver" LDFLAGS="" -k check
}
package() {
make -C "binutils-$pkgver" DESTDIR="$pkgdir" install
# Remove info documents that conflict with host version
rm -r "$pkgdir/usr/share/info"
rm "$pkgdir"/usr/lib/bfd-plugins/libdep.so
}
# getver: gnu.org/software/binutils
|