summaryrefslogtreecommitdiff
path: root/libre/arm-linux-gnueabi-gcc
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-03-28 18:47:09 -0400
committerDavid P <megver83@parabola.nu>2020-03-28 18:47:09 -0400
commit529f19a63f119b2554f23dd8841a134780ef7c39 (patch)
tree2daf1105bdca83b3ae579e248f39475cc3cd8ba8 /libre/arm-linux-gnueabi-gcc
parentcc730f6d3eda14786ab6e582279ca8bf4dcbdd20 (diff)
updpkg: libre/arm-linux-gnueabi-gcc 9.3.0-1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre/arm-linux-gnueabi-gcc')
-rw-r--r--libre/arm-linux-gnueabi-gcc/PKGBUILD30
1 files changed, 15 insertions, 15 deletions
diff --git a/libre/arm-linux-gnueabi-gcc/PKGBUILD b/libre/arm-linux-gnueabi-gcc/PKGBUILD
index 534004bb7..545b22d07 100644
--- a/libre/arm-linux-gnueabi-gcc/PKGBUILD
+++ b/libre/arm-linux-gnueabi-gcc/PKGBUILD
@@ -2,10 +2,9 @@
_target=arm-linux-gnueabi
pkgname=$_target-gcc
-_pkgver=9.2.0
-#_snapshot=8-20180824
-pkgver=$_pkgver${_snapshot/*-/+}
-_islver=0.21
+_pkgver=9.3.0
+pkgver=$_pkgver
+_islver=0.22
pkgrel=1
pkgdesc='The GNU Compiler Collection - cross compiler for ARM target'
arch=(x86_64 i686 armv7h)
@@ -15,11 +14,10 @@ depends=($_target-binutils libmpc zlib)
makedepends=(gmp mpfr)
options=(!emptydirs !strip)
source=(https://gcc.gnu.org/pub/gcc/releases/gcc-$_pkgver/gcc-$_pkgver.tar.xz{,.sig}
- #https://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
http://isl.gforge.inria.fr/isl-$_islver.tar.bz2)
-sha512sums=('a12dff52af876aee0fd89a8d09cdc455f35ec46845e154023202392adc164848faf8ee881b59b681b696e27c69fd143a214014db4214db62f9891a1c8365c040'
+sha512sums=('4b9e3639eef6e623747a22c37a904b4750c93b6da77cf3958d5047e9b5ebddb7eebe091cc16ca0a227c0ecbd2bf3b984b221130f269a97ee4cc18f9cf6c444de'
'SKIP'
- '48f3b8d90550e8ab28837b5757f87bf99cddec67769877e04942abef69bbe526ef4c863951d55dd89a6027dc09df48988c8df6029782f990aa4d5b67e65f6d53')
+ 'fc2c9796979610dd51143dcefe4f5c989c4354571cc5a1fcc6b932fd41f42a54f6b43adfd289af61be7bd06f3a523fa6a7d7ee56680e32d8036beb4c188fa668')
validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek <jakub@redhat.com>
if [ -n "$_snapshot" ]; then
@@ -78,21 +76,23 @@ build() {
--with-libelf \
--enable-gnu-indirect-function
- make $MAKEFLAGS all-gcc
+ make all-gcc
}
package() {
- cd gcc-build
-
- make DESTDIR="$pkgdir" install-gcc
+ make -C gcc-build DESTDIR="$pkgdir" install-gcc
# strip target binaries
- find "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( -name \*.a -or -name \*.o \) -exec $_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
+ find "$pkgdir"/usr/lib/gcc/$_target/ \
+ -type f -and \( -name \*.a -or -name \*.o \) \
+ -exec $_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges \
+ -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line \
+ -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
# strip host binaries
- find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( -executable \) -exec strip '{}' \;
+ find "$pkgdir/usr/bin/" "$pkgdir/usr/lib/gcc/$_target/" -type f \
+ -and \( -executable \) -exec strip '{}' \;
# Remove files that conflict with host gcc package
- rm -r "$pkgdir"/usr/share/man/man7
- rm -r "$pkgdir"/usr/share/info
+ rm -r "$pkgdir/usr/share/"{man/man7,info}
}