diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-06-14 21:40:01 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-06-14 21:40:01 +0000 |
commit | d52ef78139d0e202e549679e6ebb484c12066021 (patch) | |
tree | d8c707ffe0a07a214263e80e9fe0cf5b39817785 /main/musl | |
parent | d72634a4fbdd92ea52d66bc2215c65d246d48bd8 (diff) | |
download | aports-d52ef78139d0e202e549679e6ebb484c12066021.tar.bz2 aports-d52ef78139d0e202e549679e6ebb484c12066021.tar.xz |
main/musl: likewise for aarch64
Diffstat (limited to 'main/musl')
-rw-r--r-- | main/musl/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/musl/APKBUILD b/main/musl/APKBUILD index 0c72b4e74e..a2d82e75f6 100644 --- a/main/musl/APKBUILD +++ b/main/musl/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Timo Teräs <timo.teras@iki.fi> pkgname=musl pkgver=1.1.16 -pkgrel=11 +pkgrel=12 pkgdesc="the musl c library (libc) implementation" url="http://www.musl-libc.org/" arch="all" @@ -164,6 +164,7 @@ compat() { case "$CARCH" in armel) _ld="ld-linux.so.3" ;; armhf | armv7) _ld="ld-linux-armhf.so.3" ;; + aarch64) _ld="ld-linux-aarch64.so.1" ;; x86) _ld="ld-linux.so.2" ;; x86_64) _ld="ld-linux-x86-64.so.2" # go precompiled binary uses /lib64/ld-linux-x86-64.so.2 |