# $Id: PKGBUILD 145910 2012-01-04 01:24:50Z allan $ # Maintainer: Allan McRae # toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc # ALARM: Kevin Mihelich # - Added a CONFIGFLAG for ARM, defining our build hosts # - Disabled make check, too processor/ram intensive, blows up noautobuild=1 pkgname=binutils pkgver=2.23.1 pkgrel=3 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.17' 'zlib') checkdepends=('dejagnu') options=('!libtool' '!distcc' '!ccache') install=binutils.install source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig}) md5sums=('33adb18c3048d057ac58d07a3f1adb38' '1869b37216e7d7eff7e335a69e0882fd') build() { cd ${srcdir} mkdir binutils-build && cd binutils-build [[ $CARCH == "x86_64" ]] && CONFIGFLAG="--enable-64-bit-bfd --disable-multilib" # ALARM: Specify build host types [[ $CARCH == "arm" ]] && CONFIGFLAG="--host=armv5tel-unknown-linux-gnueabi --build=armv5tel-unknown-linux-gnueabi" [[ $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" ${srcdir}/binutils-${pkgver}/configure --prefix=/usr \ --with-lib-path=/usr/lib:/usr/local/lib \ --with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues \ --enable-ld=default --enable-gold \ --enable-plugins --enable-threads \ --with-pic --enable-shared \ --disable-werror $CONFIGFLAG # check the host environment and makes sure all the necessary tools are available make configure-host make tooldir=${pkgdir}/usr } check() { cd ${srcdir}/binutils-build # do not abort on errors - manually check log files #make -k -j1 check || true } package() { cd ${srcdir}/binutils-build make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install # Add some useful headers install -m644 ${srcdir}/binutils-${pkgver}/include/libiberty.h ${pkgdir}/usr/include install -m644 ${srcdir}/binutils-${pkgver}/include/demangle.h ${pkgdir}/usr/include # Install PIC libiberty.a install -m644 libiberty/pic/libiberty.a ${pkgdir}/usr/lib # Remove unwanted files rm -f ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}* rm ${pkgdir}/usr/share/info/{configure,standards}.info # No shared linking to these files outside binutils rm -f ${pkgdir}/usr/lib/lib{bfd,opcodes}.so }