mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-04 06:27:14 +08:00
83 lines
2.6 KiB
Bash
83 lines
2.6 KiB
Bash
# maintainer: Manuel Tortosa <manutortosa@chakra-project.org>
|
|
|
|
# toolchain build order:
|
|
# lib32-glibc > binutils-multilib > gcc-multilib > binutils-multilib > lib32-glibc > gcc-multilib
|
|
|
|
pkgname=binutils-multilib
|
|
pkgver=2.23.2
|
|
pkgrel=6
|
|
pkgdesc="A set of programs to assemble and manipulate binary and object files for multilib"
|
|
arch=('x86_64')
|
|
url="http://www.gnu.org/software/binutils/"
|
|
license=('GPL')
|
|
groups=('multilib-devel')
|
|
provides=("binutils=$pkgver-$pkgrel")
|
|
conflicts=('binutils')
|
|
depends=('glibc>=2.18' 'zlib')
|
|
makedepends=('gcc-multilib') # Make sure we compile this with gcc-multilib
|
|
checkdepends=('dejagnu' 'bc')
|
|
options=('!libtool' '!distcc' '!ccache')
|
|
install=binutils.install
|
|
source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig}
|
|
binutils-2.23.2-texinfo-5.0.patch)
|
|
md5sums=('4f8fa651e35ef262edc01d60fb45702e'
|
|
'dfde4428f08d91f309cdcfe92bf28d08'
|
|
'34e439ce23213a91e2af872dfbb5094c')
|
|
|
|
prepare() {
|
|
cd ${srcdir}/binutils-${pkgver}
|
|
|
|
# http://sourceware.org/git/?p=binutils.git;a=patch;h=e02bf935
|
|
# http://sourceware.org/git/?p=binutils.git;a=patch;h=935f8542
|
|
patch -p1 -i ${srcdir}/binutils-2.23.2-texinfo-5.0.patch
|
|
|
|
# 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
|
|
|
|
${srcdir}/binutils-${pkgver}/configure --prefix=/usr \
|
|
--with-lib-path=/usr/lib:/usr/local/lib \
|
|
--with-bugurl=http://chakra-project.org/bugs \
|
|
--enable-ld=default --enable-gold \
|
|
--enable-plugins --enable-threads \
|
|
--with-pic --enable-shared \
|
|
--disable-werror --enable-multilib
|
|
|
|
# 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
|
|
|
|
# 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 ${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
|
|
}
|