2012-01-04 22:31:44 +00:00
|
|
|
# $Id: PKGBUILD 145910 2012-01-04 01:24:50Z allan $
|
2011-01-05 07:28:13 +00:00
|
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
2011-02-05 01:42:15 +00:00
|
|
|
|
|
|
|
# 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>
|
2012-11-05 16:25:15 +00:00
|
|
|
# - Added a CONFIGFLAG for ARM, defining our build hosts
|
2011-07-04 16:27:22 +00:00
|
|
|
# - Disabled make check, too processor/ram intensive, blows up
|
2011-01-06 00:43:53 +00:00
|
|
|
|
2011-02-05 01:42:15 +00:00
|
|
|
noautobuild=1
|
2011-01-05 07:28:13 +00:00
|
|
|
|
|
|
|
pkgname=binutils
|
2013-12-15 17:41:29 +00:00
|
|
|
pkgver=2.24
|
2014-02-10 04:03:45 +00:00
|
|
|
pkgrel=2
|
2011-01-05 07:28:13 +00:00
|
|
|
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-02-10 04:03:45 +00:00
|
|
|
depends=('glibc>=2.19' 'zlib')
|
2011-07-04 16:27:22 +00:00
|
|
|
checkdepends=('dejagnu')
|
2013-12-15 17:41:29 +00:00
|
|
|
options=('staticlibs' '!distcc' '!ccache')
|
2011-01-05 07:28:13 +00:00
|
|
|
install=binutils.install
|
2013-12-15 17:41:29 +00:00
|
|
|
source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig})
|
|
|
|
md5sums=('e0f71a7b2ddab0f8612336ac81d9636b'
|
|
|
|
'SKIP')
|
2012-11-05 18:34:52 +00:00
|
|
|
|
2013-04-12 00:57:49 +00:00
|
|
|
prepare() {
|
2013-04-04 15:28:33 +00:00
|
|
|
cd ${srcdir}/binutils-${pkgver}
|
|
|
|
|
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-01-05 07:28:13 +00:00
|
|
|
|
2012-01-04 22:31:44 +00:00
|
|
|
[[ $CARCH == "x86_64" ]] && CONFIGFLAG="--enable-64-bit-bfd --disable-multilib"
|
|
|
|
|
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"
|
2011-03-06 19:08:16 +00:00
|
|
|
|
2012-11-05 16:25:15 +00:00
|
|
|
${srcdir}/binutils-${pkgver}/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 \
|
2013-12-15 17:41:29 +00:00
|
|
|
--enable-threads --enable-shared \
|
|
|
|
--enable-ld=default --enable-gold --enable-plugins \
|
2013-01-05 17:40:18 +00:00
|
|
|
--disable-werror $CONFIGFLAG
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2011-07-04 16:27:22 +00:00
|
|
|
# check the host environment and makes sure all the necessary tools are available
|
2011-02-05 01:42:15 +00:00
|
|
|
make configure-host
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2013-04-04 15:28:33 +00:00
|
|
|
make tooldir=/usr
|
2011-05-17 03:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd ${srcdir}/binutils-build
|
2011-02-05 01:42:15 +00:00
|
|
|
|
|
|
|
# do not abort on errors - manually check log files
|
2011-03-06 19:08:16 +00:00
|
|
|
#make -k -j1 check || true
|
2011-02-05 01:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/binutils-build
|
2011-01-05 07:28:13 +00:00
|
|
|
make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
|
2011-02-05 01:42:15 +00:00
|
|
|
|
2013-01-05 17:40:18 +00:00
|
|
|
# Remove unwanted files
|
2011-01-05 07:28:13 +00:00
|
|
|
rm -f ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
|
2012-11-25 06:26:40 +00:00
|
|
|
rm ${pkgdir}/usr/share/info/{configure,standards}.info
|
|
|
|
|
2013-01-05 17:40:18 +00:00
|
|
|
# No shared linking to these files outside binutils
|
2011-01-05 07:28:13 +00:00
|
|
|
rm -f ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
|
|
|
|
}
|