PKGBUILDs/core/binutils/PKGBUILD

95 lines
3.1 KiB
Bash
Raw Normal View History

2018-04-24 12:11:31 +00:00
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
2011-12-09 20:46:15 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2018-06-06 12:50:18 +00:00
# - Added a CONFIGFLAG for ARM, defining our build hosts
# - --disable-sim, files provided by gdb
noautobuild=1
pkgname=binutils
2021-02-18 14:58:05 +00:00
pkgver=2.36.1
2021-05-17 03:20:47 +00:00
pkgrel=3
2017-09-09 16:46:10 +00:00
pkgdesc='A set of programs to assemble and manipulate binary and object files'
2018-01-06 20:20:15 +00:00
arch=(x86_64)
2019-06-18 12:37:41 +00:00
url='https://www.gnu.org/software/binutils/'
2017-09-09 16:46:10 +00:00
license=(GPL)
2018-04-24 12:11:31 +00:00
groups=(base-devel)
2020-03-14 18:06:49 +00:00
depends=(glibc zlib elfutils)
2020-05-14 12:45:46 +00:00
makedepends=(elfutils git)
2017-09-09 16:46:10 +00:00
options=(staticlibs !distcc !ccache)
2020-08-21 23:46:14 +00:00
#_commit=cb5f6a3e146cc70bc2d864989386df80acec5d3e
#source=(git+https://sourceware.org/git/binutils-gdb.git#commit=$_commit)
source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz{,.sig})
2021-02-18 14:58:05 +00:00
sha256sums=('e81d9edf373f193af428a0f256674aea62a9d74dfe93f65192d4eae030b0f3b0'
2020-08-21 23:46:14 +00:00
'SKIP')
2017-10-21 19:52:04 +00:00
validpgpkeys=(3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F)
2012-11-05 18:34:52 +00:00
2013-04-12 00:57:49 +00:00
prepare() {
2020-05-14 12:45:46 +00:00
[[ ! -d binutils-gdb ]] && ln -s binutils-$pkgver binutils-gdb
2017-09-09 16:46:10 +00:00
mkdir -p binutils-build
2020-05-14 12:45:46 +00:00
cd binutils-gdb
2015-02-09 04:07:41 +00:00
2020-05-22 12:41:13 +00:00
# Turn off development mode (-Werror, gas run-time checks, date in sonames)
sed -i '/^development=/s/true/false/' bfd/development.sh
2013-04-12 00:57:49 +00:00
# hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
}
build() {
2016-02-22 13:29:51 +00:00
cd binutils-build
2011-05-17 03:19:40 +00:00
# ALARM: Specify build host types
2012-11-05 17:39:36 +00:00
[[ $CARCH == "arm" ]] && CONFIGFLAG="--host=armv5tel-unknown-linux-gnueabi --build=armv5tel-unknown-linux-gnueabi"
2012-11-05 16:25:15 +00:00
[[ $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"
2015-07-05 01:45:02 +00:00
[[ $CARCH == "aarch64" ]] && CONFIGFLAG="--host=aarch64-unknown-linux-gnu --build=aarch64-unknown-linux-gnu"
2020-05-14 12:45:46 +00:00
"$srcdir/binutils-gdb/configure" \
2017-03-11 03:36:13 +00:00
--prefix=/usr \
2012-09-14 01:01:20 +00:00
--with-lib-path=/usr/lib:/usr/local/lib \
2013-01-05 17:40:18 +00:00
--with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues \
2018-04-24 12:11:31 +00:00
--enable-deterministic-archives \
2017-03-11 03:36:13 +00:00
--enable-gold \
2018-04-24 12:11:31 +00:00
--enable-ld=default \
--enable-lto \
2017-03-11 03:36:13 +00:00
--enable-plugins \
2017-07-14 00:36:39 +00:00
--enable-relro \
2018-04-24 12:11:31 +00:00
--enable-threads \
2017-03-11 03:36:13 +00:00
--disable-gdb \
2018-04-24 12:11:31 +00:00
--disable-werror \
2020-03-14 18:06:49 +00:00
--with-debuginfod \
2018-04-24 12:11:31 +00:00
--with-pic \
2017-09-09 16:46:10 +00:00
--with-system-zlib \
2017-03-11 03:36:13 +00:00
--disable-sim \
$CONFIGFLAG
make configure-host
2013-04-04 15:28:33 +00:00
make tooldir=/usr
2011-05-17 03:19:40 +00:00
}
check() {
2016-02-22 13:29:51 +00:00
cd binutils-build
2018-08-12 18:45:37 +00:00
2014-09-16 01:46:39 +00:00
# unset LDFLAGS as testsuite makes assumptions about which ones are active
# ignore failures in gold testsuite...
2014-10-04 00:37:12 +00:00
make -k LDFLAGS="" check || true
}
package() {
2016-02-22 13:29:51 +00:00
cd binutils-build
2017-09-09 16:46:10 +00:00
make prefix="$pkgdir/usr" tooldir="$pkgdir/usr" install
2016-02-22 13:29:51 +00:00
2013-01-05 17:40:18 +00:00
# Remove unwanted files
2017-09-09 16:46:10 +00:00
rm -f "$pkgdir"/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
2012-11-25 06:26:40 +00:00
2013-01-05 17:40:18 +00:00
# No shared linking to these files outside binutils
2017-09-09 16:46:10 +00:00
rm -f "$pkgdir"/usr/lib/lib{bfd,opcodes}.so
2018-04-24 12:11:31 +00:00
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"
}