2011-11-01 01:39:14 +00:00
|
|
|
# $Id: PKGBUILD 135919 2011-08-20 07:14:17Z 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-07-04 16:27:22 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@plugapps.com>
|
|
|
|
# - Added a CONFIGFLAG for arm, defining our build host
|
|
|
|
# - Disabled make check, too processor/ram intensive, blows up
|
2011-01-06 00:43:53 +00:00
|
|
|
|
2011-01-10 00:36:22 +00:00
|
|
|
plugrel=1
|
2011-02-05 01:42:15 +00:00
|
|
|
noautobuild=1
|
2011-01-05 07:28:13 +00:00
|
|
|
|
|
|
|
pkgname=binutils
|
2011-07-04 16:27:22 +00:00
|
|
|
pkgver=2.21.1
|
2011-11-01 01:39:14 +00:00
|
|
|
pkgrel=2
|
2011-07-04 16:27:22 +00:00
|
|
|
_date=20110627
|
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')
|
|
|
|
groups=('base')
|
2011-07-04 16:27:22 +00:00
|
|
|
depends=('glibc>=2.14' 'zlib')
|
|
|
|
checkdepends=('dejagnu')
|
2011-01-05 07:28:13 +00:00
|
|
|
options=('!libtool' '!distcc' '!ccache')
|
|
|
|
install=binutils.install
|
2011-05-17 03:19:40 +00:00
|
|
|
source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2)
|
2011-07-04 16:27:22 +00:00
|
|
|
md5sums=('2face559e80d649ba148e42bb2d1fb0f')
|
2011-01-05 07:28:13 +00:00
|
|
|
|
|
|
|
mksource() {
|
|
|
|
mkdir ${pkgname}-${_date}
|
|
|
|
cd ${pkgname}-${_date}
|
2011-02-05 01:42:15 +00:00
|
|
|
export _TAG=binutils-2_21-branch
|
2011-01-05 07:28:13 +00:00
|
|
|
export 'CVSROOT=:pserver:anoncvs@sourceware.org:/cvs/src'
|
|
|
|
cvs -z9 co -r $_TAG binutils || return 1
|
2011-02-05 01:42:15 +00:00
|
|
|
mv src binutils
|
|
|
|
tar -cvjf ../binutils-${pkgver}_${_date}.tar.bz2 binutils/*
|
2011-01-05 07:28:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}
|
2011-02-05 01:42:15 +00:00
|
|
|
mkdir binutils-build && cd binutils-build
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2011-05-17 03:19:40 +00:00
|
|
|
# ALARM: Specify build host types
|
2011-07-04 16:27:22 +00:00
|
|
|
[[ $CARCH == "arm" ]] && CONFIGFLAG="--host=arm-unknown-linux-gnueabi --build=arm-unknown-linux-gnueabi" && MAKEFLAG="-j1"
|
|
|
|
[[ $CARCH == "armv7h" ]] && CONFIGFLAG="--host=armv7l-unknown-linux-gnueabi --build=armv7l-unknown-linux-gnueabi" && MAKEFLAG="-j2"
|
2011-03-06 19:08:16 +00:00
|
|
|
|
2011-02-05 01:42:15 +00:00
|
|
|
${srcdir}/binutils/configure --prefix=/usr \
|
|
|
|
--enable-ld=default --enable-gold \
|
|
|
|
--enable-plugins --enable-threads \
|
|
|
|
--enable-shared $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
|
|
|
|
2011-07-04 16:27:22 +00:00
|
|
|
make $MAKEFLAG tooldir=${pkgdir}/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
|
|
|
|
|
|
|
# Add some useful headers
|
|
|
|
install -m644 ${srcdir}/binutils/include/libiberty.h ${pkgdir}/usr/include
|
|
|
|
install -m644 ${srcdir}/binutils/include/demangle.h ${pkgdir}/usr/include
|
|
|
|
|
|
|
|
# Rebuild libiberty.a with -fPIC
|
|
|
|
make -C libiberty clean
|
|
|
|
make CFLAGS="$CFLAGS -fPIC" -C libiberty
|
|
|
|
install -m644 libiberty/libiberty.a ${pkgdir}/usr/lib
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2011-02-05 01:42:15 +00:00
|
|
|
# Rebuild libbfd.a with -fPIC
|
|
|
|
make -C bfd clean
|
|
|
|
# hidden visability prevent 3rd party shared libraries exporting bfd non-stable API
|
|
|
|
make CFLAGS="$CFLAGS -fPIC -fvisibility=hidden" -C bfd
|
|
|
|
install -m644 bfd/libbfd.a ${pkgdir}/usr/lib
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2011-02-05 01:42:15 +00:00
|
|
|
# Remove Windows/Novell specific man pages
|
2011-01-05 07:28:13 +00:00
|
|
|
rm -f ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
|
|
|
|
|
2011-02-05 01:42:15 +00:00
|
|
|
# Remove these symlinks, they are not ABI stable.
|
2011-01-05 07:28:13 +00:00
|
|
|
# Programs should compile static to the .a file.
|
|
|
|
rm -f ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
|
|
|
|
echo "INPUT ( /usr/lib/libbfd.a -liberty -lz )" >${pkgdir}/usr/lib/libbfd.so
|
|
|
|
echo "INPUT ( /usr/lib/libopcodes.a -lbfd )" >${pkgdir}/usr/lib/libopcodes.so
|
|
|
|
}
|