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.
This commit is contained in:
parent
4101340742
commit
7bff136eea
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue