mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
core/binutils to 2.26-1
This commit is contained in:
parent
e2889f6a3a
commit
980a2f8c34
1 changed files with 15 additions and 18 deletions
|
@ -13,29 +13,24 @@
|
|||
noautobuild=1
|
||||
|
||||
pkgname=binutils
|
||||
pkgver=2.25.1
|
||||
pkgrel=3
|
||||
_commit=2bd25930
|
||||
pkgver=2.26
|
||||
pkgrel=1
|
||||
_commit=a4496709
|
||||
pkgdesc="A set of programs to assemble and manipulate binary and object files"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.gnu.org/software/binutils/"
|
||||
license=('GPL')
|
||||
groups=('base-devel')
|
||||
depends=('glibc>=2.22' 'zlib')
|
||||
depends=('glibc>=2.23' 'zlib')
|
||||
makedepends=('git')
|
||||
checkdepends=('dejagnu' 'bc')
|
||||
options=('staticlibs' '!distcc' '!ccache')
|
||||
install=binutils.install
|
||||
source=(git://sourceware.org/git/binutils-gdb.git#commit=${_commit}
|
||||
binutils-e9c1bdad.patch)
|
||||
md5sums=('SKIP'
|
||||
'eb3aceaab8ed26e06d505f82beb30f8f')
|
||||
source=(git://sourceware.org/git/binutils-gdb.git#commit=${_commit})
|
||||
md5sums=('SKIP')
|
||||
|
||||
prepare() {
|
||||
cd ${srcdir}/binutils-gdb
|
||||
|
||||
# https://sourceware.org/bugzilla/show_bug.cgi?id=16992
|
||||
patch -p1 -i ${srcdir}/binutils-e9c1bdad.patch
|
||||
cd binutils-gdb
|
||||
|
||||
# hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
|
||||
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
|
||||
|
@ -44,7 +39,7 @@ prepare() {
|
|||
}
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/binutils-build
|
||||
cd binutils-build
|
||||
|
||||
# ALARM: Specify build host types
|
||||
[[ $CARCH == "arm" ]] && CONFIGFLAG="--host=armv5tel-unknown-linux-gnueabi --build=armv5tel-unknown-linux-gnueabi"
|
||||
|
@ -52,7 +47,7 @@ build() {
|
|||
[[ $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 \
|
||||
../binutils-gdb/configure --prefix=/usr \
|
||||
--with-lib-path=/usr/lib:/usr/local/lib \
|
||||
--with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues \
|
||||
--enable-threads --enable-shared --with-pic \
|
||||
|
@ -67,20 +62,22 @@ build() {
|
|||
}
|
||||
|
||||
check() {
|
||||
cd ${srcdir}/binutils-build
|
||||
|
||||
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 ${srcdir}/binutils-build
|
||||
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 ( %{_libdir}/libbfd.a -liberty -lz -ldl )" > "$pkgdir"/usr/lib/libbfd.so
|
||||
echo "INPUT ( %{_libdir}/libopcodes.a -lbfd )" > "$pkgdir"/usr/lib/libopcodes.so
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue