PKGBUILDs/core/binutils/PKGBUILD

86 lines
2.8 KiB
Bash
Raw Normal View History

2012-01-04 22:31:44 +00:00
# $Id: PKGBUILD 145910 2012-01-04 01:24:50Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
2015-06-23 00:48:45 +00:00
# build from head of release branch as bug fix releases are rare
2011-12-09 20:46:15 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2012-11-05 16:25:15 +00:00
# - Added a CONFIGFLAG for ARM, defining our build hosts
2015-06-23 02:36:28 +00:00
# - --disable-sim, files provided by gdb
# - Disabled make check, too processor/ram intensive, blows up
noautobuild=1
pkgname=binutils
2014-12-28 14:37:07 +00:00
pkgver=2.25
2015-06-23 02:36:28 +00:00
pkgrel=5.1
2015-05-22 00:41:33 +00:00
_commit=69352378
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')
2011-12-09 20:46:15 +00:00
groups=('base-devel')
2014-09-16 01:46:39 +00:00
depends=('glibc>=2.20' 'zlib')
2015-05-22 00:41:33 +00:00
makedepends=('git')
2015-06-23 00:48:45 +00:00
checkdepends=('dejagnu' 'bc')
2013-12-15 17:41:29 +00:00
options=('staticlibs' '!distcc' '!ccache')
install=binutils.install
2015-05-22 00:41:33 +00:00
source=(git://sourceware.org/git/binutils-gdb.git#commit=${_commit}
binutils-e9c1bdad.patch)
md5sums=('SKIP'
'eb3aceaab8ed26e06d505f82beb30f8f')
2012-11-05 18:34:52 +00:00
2013-04-12 00:57:49 +00:00
prepare() {
2015-05-22 00:41:33 +00:00
cd ${srcdir}/binutils-gdb
2013-04-04 15:28:33 +00:00
2015-05-22 00:41:33 +00:00
# https://sourceware.org/bugzilla/show_bug.cgi?id=16992
patch -p1 -i ${srcdir}/binutils-e9c1bdad.patch
2015-02-09 04:07:41 +00:00
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
mkdir ${srcdir}/binutils-build
}
build() {
cd ${srcdir}/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"
2015-05-22 00:41:33 +00:00
${srcdir}/binutils-gdb/configure --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 \
2014-06-10 12:16:43 +00:00
--enable-threads --enable-shared --with-pic \
2013-12-15 17:41:29 +00:00
--enable-ld=default --enable-gold --enable-plugins \
2015-06-23 02:36:28 +00:00
--disable-werror --disable-gdb --disable-sim $CONFIGFLAG
# check the host environment and makes sure all the necessary tools are available
make configure-host
2013-04-04 15:28:33 +00:00
make tooldir=/usr
2011-05-17 03:19:40 +00:00
}
check() {
cd ${srcdir}/binutils-build
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() {
cd ${srcdir}/binutils-build
make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
2013-01-05 17:40:18 +00:00
# Remove unwanted files
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
rm -f ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
}