PKGBUILDs/core/binutils/PKGBUILD

125 lines
4.2 KiB
Bash
Raw Normal View History

2022-04-13 23:54:37 +00:00
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2018-04-24 12:11:31 +00:00
# Contributor: Allan McRae <allan@archlinux.org>
2022-02-15 00:40:14 +00:00
# toolchain build order: linux-api-headers->glibc->binutils->gcc->glibc->binutils->gcc
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
noautobuild=1
pkgname=binutils
2022-02-15 00:40:14 +00:00
pkgver=2.38
2022-04-13 23:54:37 +00:00
pkgrel=4
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/'
2022-04-13 23:54:37 +00:00
license=('GPL3' 'GPL' 'FDL1.3' 'custom:FSFAP')
2018-04-24 12:11:31 +00:00
groups=(base-devel)
2022-02-15 00:40:14 +00:00
depends=(glibc zlib libelf)
checkdepends=(dejagnu debuginfod bc)
optdepends=('debuginfod: for debuginfod server/client functionality')
options=(staticlibs !distcc !ccache debug)
2020-08-21 23:46:14 +00:00
#_commit=cb5f6a3e146cc70bc2d864989386df80acec5d3e
#source=(git+https://sourceware.org/git/binutils-gdb.git#commit=$_commit)
2022-02-15 00:40:14 +00:00
source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz{,.sig}
2022-04-13 23:54:37 +00:00
gold-warn-unsupported.patch
2022-02-15 00:40:14 +00:00
fix-incorrect-undefined-symbol.patch)
sha256sums=('e316477a914f567eccc34d5d29785b8b0f5a10208d36bbacedcc39048ecfe024'
'SKIP'
2022-04-13 23:54:37 +00:00
'2d430b66f84a19c154725ec535280c493be1d34f1a90f95208dce02fecd0e4e4'
2022-02-15 00:40:14 +00:00
'fd33b2f8cac7561cecf3fdbb5a50fd2f2dfa6420516cbe57c47784a06fa16bf6')
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
2022-04-13 23:54:37 +00:00
# Creds @Fedora
# Change the gold configuration script to only warn about
# unsupported targets. This allows the binutils to be built with
# BPF support enabled.
patch -Np1 -i "${srcdir}"/gold-warn-unsupported.patch
2022-02-15 00:40:14 +00:00
# fix incorrect "undefined reference" errors
# https://sourceware.org/bugzilla/show_bug.cgi?id=28879
patch -Np1 -i "${srcdir}"/fix-incorrect-undefined-symbol.patch
2013-04-12 00:57:49 +00:00
}
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 16:25:15 +00:00
[[ $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 \
2022-02-15 00:40:14 +00:00
--enable-install-libiberty \
2018-04-24 12:11:31 +00:00
--enable-ld=default \
2017-03-11 03:36:13 +00:00
--enable-plugins \
2017-07-14 00:36:39 +00:00
--enable-relro \
2022-02-15 00:40:14 +00:00
--enable-shared \
2018-04-24 12:11:31 +00:00
--enable-threads \
2017-03-11 03:36:13 +00:00
--disable-gdb \
2022-02-15 00:40:14 +00:00
--disable-gdbserver \
--disable-libdecnumber \
--disable-readline \
--disable-sim \
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
$CONFIGFLAG
2022-02-15 00:40:14 +00:00
make -O tooldir=/usr
2022-04-13 23:54:37 +00:00
# Extract the FSF All Permissive License
# <https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html>
# used for some linker scripts.
tail -n 5 "${srcdir}"/binutils-${pkgver}/ld/scripttempl/README > FSFAP
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
2022-02-15 00:40:14 +00:00
# Use minimal flags for testsuite
# ld testsuite uses CFLAGS_FOR_TARGET and requires -g
# gold testsuite requires CXXFLAGS/CFLAGS with default PIE/PIC disabled
make -O CFLAGS_FOR_TARGET="-O2 -g" \
CXXFLAGS="-O2 -no-pie -fno-PIC" \
CFLAGS="-O2 -no-pie" \
LDFLAGS="" \
check
}
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
2022-04-13 23:54:37 +00:00
# install PIC version of libiberty
install -m644 libiberty/pic/libiberty.a "$pkgdir/usr/lib"
2013-01-05 17:40:18 +00:00
# Remove unwanted files
2022-04-13 23:54:37 +00:00
rm -f "$pkgdir"/usr/share/man/man1/{dlltool,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"
2022-04-13 23:54:37 +00:00
# install FSF All Permissive License
install -Dm644 -t "${pkgdir}"/usr/share/licenses/${pkgname}/ FSFAP
}