* add arm-none-eabi-binutils
This commit is contained in:
parent
e84e519b2a
commit
4d65be9355
64
cross-compilers/arm-none-eabi-binutils/PKGBUILD
Normal file
64
cross-compilers/arm-none-eabi-binutils/PKGBUILD
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
||||||
|
# Maintainer: Anatol Pomozov <anatol.pomozov@gmail.com>
|
||||||
|
# Contributor: Martin Schmölzer <mschmoelzer@gmail.com>
|
||||||
|
|
||||||
|
_target=arm-none-eabi
|
||||||
|
pkgname=$_target-binutils
|
||||||
|
pkgver=2.39
|
||||||
|
pkgrel=2
|
||||||
|
pkgdesc='A set of programs to assemble and manipulate binary and object files for the ARM EABI (bare-metal) target'
|
||||||
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
||||||
|
url='https://www.gnu.org/software/binutils/'
|
||||||
|
license=(GPL)
|
||||||
|
depends=(zlib libelf)
|
||||||
|
source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2{,.sig})
|
||||||
|
sha1sums=('d9028547385694d61d98fb4e2882a2b9c40ce7e9'
|
||||||
|
'SKIP')
|
||||||
|
sha256sums=('da24a84fef220102dd24042df06fdea851c2614a5377f86effa28f33b7b16148'
|
||||||
|
'SKIP')
|
||||||
|
validpgpkeys=('3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton (Chief Binutils Maintainer) <nickc@redhat.com>
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd binutils-$pkgver
|
||||||
|
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd binutils-$pkgver
|
||||||
|
|
||||||
|
./configure --target=$_target \
|
||||||
|
--with-sysroot=/usr/$_target \
|
||||||
|
--prefix=/usr \
|
||||||
|
--enable-multilib \
|
||||||
|
--enable-interwork \
|
||||||
|
--with-gnu-as \
|
||||||
|
--with-gnu-ld \
|
||||||
|
--disable-nls \
|
||||||
|
--enable-ld=default \
|
||||||
|
--enable-gold \
|
||||||
|
--enable-plugins \
|
||||||
|
--enable-deterministic-archives
|
||||||
|
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
cd binutils-$pkgver
|
||||||
|
|
||||||
|
# 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 binutils-$pkgver
|
||||||
|
|
||||||
|
make DESTDIR="$pkgdir" install
|
||||||
|
|
||||||
|
# Remove file conflicting with host binutils and manpages for MS Windows tools
|
||||||
|
rm "$pkgdir"/usr/share/man/man1/arm-none-eabi-{dlltool,windres,windmc}*
|
||||||
|
rm "$pkgdir"/usr/lib/bfd-plugins/libdep.so
|
||||||
|
|
||||||
|
# Remove info documents that conflict with host version
|
||||||
|
rm -r "$pkgdir"/usr/share/info
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user