mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
107 lines
3.4 KiB
Bash
107 lines
3.4 KiB
Bash
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->glibc->binutils->gcc
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - Added a CONFIGFLAG for ARM, defining our build hosts
|
|
|
|
noautobuild=1
|
|
|
|
pkgname=binutils
|
|
pkgver=2.38
|
|
pkgrel=3
|
|
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 libelf)
|
|
checkdepends=(dejagnu debuginfod bc)
|
|
optdepends=('debuginfod: for debuginfod server/client functionality')
|
|
options=(staticlibs !distcc !ccache debug)
|
|
#_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}
|
|
fix-incorrect-undefined-symbol.patch)
|
|
sha256sums=('e316477a914f567eccc34d5d29785b8b0f5a10208d36bbacedcc39048ecfe024'
|
|
'SKIP'
|
|
'fd33b2f8cac7561cecf3fdbb5a50fd2f2dfa6420516cbe57c47784a06fa16bf6')
|
|
validpgpkeys=(3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F)
|
|
|
|
prepare() {
|
|
[[ ! -d binutils-gdb ]] && ln -s binutils-$pkgver binutils-gdb
|
|
mkdir -p binutils-build
|
|
|
|
cd binutils-gdb
|
|
|
|
# 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
|
|
|
|
# fix incorrect "undefined reference" errors
|
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=28879
|
|
patch -Np1 -i "${srcdir}"/fix-incorrect-undefined-symbol.patch
|
|
}
|
|
|
|
build() {
|
|
cd binutils-build
|
|
|
|
# ALARM: Specify build host types
|
|
[[ $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-gdb/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-install-libiberty \
|
|
--enable-ld=default \
|
|
--enable-lto \
|
|
--enable-plugins \
|
|
--enable-relro \
|
|
--enable-shared \
|
|
--enable-threads \
|
|
--disable-gdb \
|
|
--disable-gdbserver \
|
|
--disable-libdecnumber \
|
|
--disable-readline \
|
|
--disable-sim \
|
|
--disable-werror \
|
|
--with-debuginfod \
|
|
--with-pic \
|
|
--with-system-zlib \
|
|
$CONFIGFLAG
|
|
|
|
make -O tooldir=/usr
|
|
}
|
|
|
|
check() {
|
|
cd binutils-build
|
|
|
|
# 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() {
|
|
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"
|
|
}
|