mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
81 lines
2.9 KiB
Bash
81 lines
2.9 KiB
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
|
|
|
|
pkgname=binutils
|
|
pkgver=2.20.1
|
|
pkgrel=3
|
|
_date=20100908
|
|
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')
|
|
depends=('glibc>=2.11.1-3' 'zlib')
|
|
options=('!libtool' '!distcc' '!ccache')
|
|
install=binutils.install
|
|
source=(http://chakra-project.org/sources/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2)
|
|
md5sums=('c653cd51d2c23129cb010ac8c9ce0582')
|
|
|
|
mksource() {
|
|
mkdir ${pkgname}-${_date}
|
|
cd ${pkgname}-${_date}
|
|
export _TAG=binutils-2_20-branch
|
|
export 'CVSROOT=:pserver:anoncvs@sourceware.org:/cvs/src'
|
|
cvs -z9 co -r $_TAG binutils || return 1
|
|
cd src && tar -cvjf ../../binutils-${pkgver}_${_date}.tar.bz2 *
|
|
}
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir -p build && cd build
|
|
|
|
CC="gcc -L`pwd`/bfd/.libs/"
|
|
if [ "${CARCH}" = "x86_64" ]; then
|
|
../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-64-bit-bfd --disable-multilib
|
|
else
|
|
../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared
|
|
fi
|
|
# fix man files install path
|
|
sed -i -e "s:mandir \= \/usr\/share:mandir \= ${pkgdir}\/usr\/share:" ${srcdir}/build/Makefile || return 1
|
|
# fix info files install path
|
|
sed -i -e "s:infodir \= \/usr\/share:infodir \= ${pkgdir}\/usr\/share:" ${srcdir}/build/Makefile || return 1
|
|
|
|
# This checks the host environment and makes sure all the necessary tools are available to compile Binutils.
|
|
make configure-host || return 1
|
|
|
|
make tooldir=${pkgdir}/usr || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
|
|
install -m644 ${srcdir}/include/libiberty.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
|
|
|
|
rm -f ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
|
|
|
|
# Remove these symlinks, with binutils prereleases 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
|
|
}
|