From 7bff136eeacfc578ff1b8a406d7ceaf99d57f319 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 30 Sep 2018 04:37:47 +0200 Subject: [PATCH] main/gcc6: symlink for objcopy is also required With this commit, pmbootstrap!1699 and a few changes in a linux aport, it finally compiled successfully with gcc6 \o/ Details described in #103. --- main/gcc6/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/gcc6/APKBUILD b/main/gcc6/APKBUILD index d1d25f887..314b9a67f 100644 --- a/main/gcc6/APKBUILD +++ b/main/gcc6/APKBUILD @@ -1,6 +1,6 @@ pkgname=gcc6 pkgver=6.4.0 -pkgrel=1 +pkgrel=2 pkgdesc="Old GCC for old vendor kernels (C compiler only)" url="http://gcc.gnu.org" arch="all" @@ -401,7 +401,7 @@ package() { # Link binutils to gcc6-* (so 'CROSS_COMPILE=gcc6-...' works) echo "Link binutils to gcc6-*" mkdir -p "$pkgdir/usr/bin" - for i in "ld" "ar" "nm"; do + for i in "ld" "ar" "nm" "objcopy"; do ln -sv "/usr/bin/$CTARGET-$i" \ "$pkgdir/usr/bin/gcc6-$CTARGET-$i" done