mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
90 lines
2.8 KiB
Bash
90 lines
2.8 KiB
Bash
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - Added a CONFIGFLAG for ARM, defining our build hosts
|
|
# - --disable-sim, files provided by gdb
|
|
|
|
noautobuild=1
|
|
|
|
pkgname=binutils
|
|
pkgver=2.34
|
|
pkgrel=2
|
|
pkgdesc='A set of programs to assemble and manipulate binary and object files'
|
|
arch=(x86_64)
|
|
url='https://www.gnu.org/software/binutils/'
|
|
license=(GPL)
|
|
groups=(base-devel)
|
|
depends=(glibc zlib elfutils)
|
|
makedepends=('elfutils')
|
|
options=(staticlibs !distcc !ccache)
|
|
source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz{,.sig})
|
|
validpgpkeys=(3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F)
|
|
md5sums=('664ec3a2df7805ed3464639aaae332d6'
|
|
'SKIP')
|
|
|
|
prepare() {
|
|
mkdir -p binutils-build
|
|
|
|
#cd binutils-gdb
|
|
cd binutils-$pkgver
|
|
|
|
# hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
|
|
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
|
|
}
|
|
|
|
build() {
|
|
cd binutils-build
|
|
|
|
# ALARM: Specify build host types
|
|
[[ $CARCH == "arm" ]] && CONFIGFLAG="--host=armv5tel-unknown-linux-gnueabi --build=armv5tel-unknown-linux-gnueabi"
|
|
[[ $CARCH == "armv6h" ]] && CONFIGFLAG="--host=armv6l-unknown-linux-gnueabihf --build=armv6l-unknown-linux-gnueabihf"
|
|
[[ $CARCH == "armv7h" ]] && CONFIGFLAG="--host=armv7l-unknown-linux-gnueabihf --build=armv7l-unknown-linux-gnueabihf"
|
|
[[ $CARCH == "aarch64" ]] && CONFIGFLAG="--host=aarch64-unknown-linux-gnu --build=aarch64-unknown-linux-gnu"
|
|
|
|
"$srcdir/binutils-$pkgver/configure" \
|
|
--prefix=/usr \
|
|
--with-lib-path=/usr/lib:/usr/local/lib \
|
|
--with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues \
|
|
--enable-deterministic-archives \
|
|
--enable-gold \
|
|
--enable-ld=default \
|
|
--enable-lto \
|
|
--enable-plugins \
|
|
--enable-relro \
|
|
--enable-shared \
|
|
--enable-threads \
|
|
--disable-gdb \
|
|
--disable-werror \
|
|
--with-debuginfod \
|
|
--with-pic \
|
|
--with-system-zlib \
|
|
--disable-sim \
|
|
$CONFIGFLAG
|
|
|
|
make configure-host
|
|
make tooldir=/usr
|
|
}
|
|
|
|
check() {
|
|
cd binutils-build
|
|
|
|
# unset LDFLAGS as testsuite makes assumptions about which ones are active
|
|
# ignore failures in gold testsuite...
|
|
make -k LDFLAGS="" check || true
|
|
}
|
|
|
|
package() {
|
|
cd binutils-build
|
|
make prefix="$pkgdir/usr" tooldir="$pkgdir/usr" install
|
|
|
|
# Remove unwanted files
|
|
rm -f "$pkgdir"/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
|
|
|
|
# No shared linking to these files outside binutils
|
|
rm -f "$pkgdir"/usr/lib/lib{bfd,opcodes}.so
|
|
echo 'INPUT( /usr/lib/libbfd.a -liberty -lz -ldl )' > "$pkgdir/usr/lib/libbfd.so"
|
|
echo 'INPUT( /usr/lib/libopcodes.a -lbfd )' > "$pkgdir/usr/lib/libopcodes.so"
|
|
}
|