blob: 235ae904c071c444fb9a53a75b009fbecac60313 (
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.39
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=(645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00
1b63c8b51f3e7762bdcd51985deff1e66249b5cda0e849ef960ce1495320c932)
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
}
|