blob: b3530a8af2e7fd20b42932dbe2840c8cad4ee69a (
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
|
# Maintainer: Mariano Street <mctpyt at gmail dot com>
_target=z80-elf
pkgname=$_target-binutils
pkgver=2.43
pkgrel=1
pkgdesc='A set of programs to assemble and manipulate binary and object files for the Z80 (bare-metal) target'
arch=(x86_64)
url='https://www.gnu.org/software/binutils/'
license=(GPL)
depends=(glibc zlib elfutils)
makedepends=(elfutils)
source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz{,.sig})
sha256sums=(b53606f443ac8f01d1d5fc9c39497f2af322d99e14cea5c0b4b124d630379365
4687978282b868a15f0954059b27ce78ccebda44d427c610dea1186d4247d266)
validpgpkeys=(3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F) # Nick Clifton <nickc@redhat.com>
prepare() {
cd binutils-$pkgver
# Turn off development mode (-Werror, gas run-time checks, date in sonames)
sed -i '/^development=/s/true/false/' bfd/development.sh
# hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
}
build() {
cd binutils-$pkgver
./configure \
--target=$_target \
--with-sysroot=/usr/$_target \
--prefix=/usr \
--enable-deterministic-archives \
--enable-lto \
--enable-plugins \
--enable-relro \
--enable-threads \
--disable-nls \
--with-system-zlib
make
}
check() {
cd binutils-$pkgver
# unset LDFLAGS as testsuite makes assumptions about which ones are active
# do not abort on errors - manually check log files
make -k LDFLAGS= check || true
}
package() {
cd binutils-$pkgver
make DESTDIR="$pkgdir" install
# Remove manpages for MS Windows tools
rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
# Remove info documents that conflict with host version
rm -r "$pkgdir"/usr/share/info
# Remove .so that conflict with host version
rm -r "$pkgdir"/usr/lib
}
|