mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 17:34:37 +08:00
71 lines
1.9 KiB
Bash
71 lines
1.9 KiB
Bash
pkgname=binutils
|
|
pkgver=2.27
|
|
pkgrel=4
|
|
_commit=2870b1ba
|
|
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.25' 'zlib')
|
|
makedepends=('git')
|
|
checkdepends=('dejagnu' 'bc')
|
|
conflicts=('binutils-multilib')
|
|
replaces=('binutils-multilib')
|
|
options=('staticlibs' '!distcc' '!ccache')
|
|
source=(git+https://sourceware.org/git/binutils-gdb.git#commit=${_commit})
|
|
|
|
md5sums=('SKIP')
|
|
|
|
prepare() {
|
|
cd binutils-gdb
|
|
|
|
# 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 binutils-build
|
|
|
|
../binutils-gdb/configure \
|
|
--prefix=/usr \
|
|
--with-lib-path=/usr/lib:/usr/local/lib \
|
|
--with-bugurl=http://chakralinux.org/bugtracker \
|
|
--enable-threads \
|
|
--enable-shared \
|
|
--enable-ld=default \
|
|
--enable-gold \
|
|
--enable-plugins \
|
|
--enable-deterministic-archives \
|
|
--disable-werror \
|
|
--disable-gdb # we have an extra gdb package, so we do not build gdb from binutils
|
|
|
|
# check the host environment and makes sure all the necessary tools are available
|
|
make configure-host
|
|
|
|
make tooldir=/usr
|
|
}
|
|
|
|
check() {
|
|
cd binutils-build
|
|
|
|
# unset LDFLAGS as testsuite makes assumptions about which ones are active
|
|
# ignore failures in gold testsuite...
|
|
make -k LDFLAGS="" check || true
|
|
}
|
|
|
|
package() {
|
|
cd binutils-build
|
|
make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
|
|
|
|
# Remove unwanted files
|
|
rm ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
|
|
|
|
# No shared linking to these files outside binutils
|
|
rm ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
|
|
echo "INPUT ( /usr/lib/libbfd.a -liberty -lz -ldl )" > "$pkgdir"/usr/lib/libbfd.so
|
|
echo "INPUT ( /usr/lib/libopcodes.a -lbfd )" > "$pkgdir"/usr/lib/libopcodes.so
|
|
}
|