mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-14 03:59:04 +08:00
84 lines
2.7 KiB
Bash
84 lines
2.7 KiB
Bash
# Lib32 Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Anke Boersma <abveritas[at]chakra-project[dot]org>
|
|
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
|
|
|
|
pkgname=binutils-multilib
|
|
_pkgname=binutils
|
|
pkgver=2.21
|
|
pkgrel=3
|
|
_date=20110421
|
|
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')
|
|
provides=("binutils=$pkgver-$pkgrel")
|
|
conflicts=('binutils')
|
|
depends=('glibc>=2.12-1' 'zlib')
|
|
makedepends=('gcc-multilib') # Make sure we compile this with gcc-multilib
|
|
options=('!libtool' '!distcc' '!ccache')
|
|
install=binutils.install
|
|
source=(http://chakra-project.org/sources/${_pkgname}/${_pkgname}-${pkgver}_${_date}.tar.bz2
|
|
binutils-2.21-strip-segfault.patch)
|
|
md5sums=('efba28e707bd0149e0a2bdddb9ee08b3'
|
|
'98e8dfaf1c0ededa586823ebfb27825a')
|
|
|
|
build() {
|
|
cd ${srcdir}/binutils
|
|
# http://sourceware.org/bugzilla/show_bug.cgi?id=12632
|
|
patch -Np1 -i $srcdir/binutils-2.21-strip-segfault.patch
|
|
|
|
cd ${srcdir}
|
|
mkdir binutils-build && cd binutils-build
|
|
|
|
${srcdir}/binutils/configure --prefix=/usr \
|
|
--enable-ld=default --enable-gold \
|
|
--enable-plugins --enable-threads \
|
|
--enable-shared \
|
|
--enable-64-bit-bfd --enable-multilib
|
|
|
|
# This checks the host environment and makes sure all the necessary tools are available to compile Binutils.
|
|
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/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
|
|
|
|
# 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
|
|
|
|
# Remove Windows/Novell specific man pages
|
|
rm -f ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
|
|
|
|
# Remove these symlinks, they are not ABI stable.
|
|
# 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
|
|
}
|
|
|