mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:34:37 +08:00
75 lines
2.2 KiB
Bash
75 lines
2.2 KiB
Bash
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=binutils
|
|
pkgver=2.24
|
|
pkgrel=5
|
|
pkgdesc="A set of programs to assemble and manipulate binary and object files"
|
|
arch=('x86_64')
|
|
url="http://www.gnu.org/software/binutils/"
|
|
license=('GPL')
|
|
groups=('base-devel')
|
|
depends=('glibc>=2.18' 'zlib')
|
|
checkdepends=('dejagnu' 'bc')
|
|
options=('!libtool' '!distcc' '!ccache' 'staticlibs')
|
|
install=binutils.install
|
|
source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig}
|
|
binutils-2.24-lto-testsuite.patch
|
|
binutils-2.24-static-pie-hang.patch)
|
|
md5sums=('e0f71a7b2ddab0f8612336ac81d9636b'
|
|
'SKIP'
|
|
'b16e895c24ff80acd98a21021eccefad'
|
|
'4d2cf591560c3d25265778146bbe1941')
|
|
|
|
prepare() {
|
|
cd ${srcdir}/binutils-${pkgver}
|
|
|
|
# hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
|
|
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
|
|
|
|
# fix lto testsuite with gcc-4.9 - commit b35d44f1
|
|
patch -p1 -i $srcdir/binutils-2.24-lto-testsuite.patch
|
|
|
|
# fix autoconf hang with -static -fPIE -pie - commits d1ec1e40 and 818d220a
|
|
patch -p1 -i $srcdir/binutils-2.24-static-pie-hang.patch
|
|
|
|
mkdir ${srcdir}/binutils-build
|
|
}
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/binutils-build
|
|
|
|
${srcdir}/binutils-${pkgver}/configure --prefix=/usr \
|
|
--with-lib-path=/usr/lib:/usr/local/lib \
|
|
--with-bugurl=http://chakraos.org/bugs \
|
|
--enable-ld=default --enable-gold \
|
|
--enable-plugins --enable-threads \
|
|
--enable-shared \
|
|
--disable-werror
|
|
|
|
# check the host environment and makes sure all the necessary tools are available
|
|
make configure-host
|
|
|
|
make tooldir=/usr
|
|
}
|
|
|
|
check() {
|
|
cd ${srcdir}/binutils-build
|
|
|
|
# unset LDFLAGS as testsuite makes assumptions about which ones are active
|
|
# do not abort on errors - manually check log files
|
|
make LDFLAGS="" -k check || true
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/binutils-build
|
|
make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
|
|
|
|
# Remove unwanted files
|
|
rm ${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 ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
|
|
}
|