gcompat: add ppc64 linker
This commit is contained in:
parent
85e4c04158
commit
850061b8d3
1 changed files with 3 additions and 1 deletions
|
@ -5,8 +5,8 @@ revision=1
|
||||||
build_style=gnu-makefile
|
build_style=gnu-makefile
|
||||||
short_desc="Compatibility layer to allow running glibc binaries on musl systems"
|
short_desc="Compatibility layer to allow running glibc binaries on musl systems"
|
||||||
maintainer="Daniel James <djames@orcadian.net>"
|
maintainer="Daniel James <djames@orcadian.net>"
|
||||||
homepage="https://code.foxkit.us/adelie/gcompat"
|
|
||||||
license="ISC"
|
license="ISC"
|
||||||
|
homepage="https://code.foxkit.us/adelie/gcompat"
|
||||||
distfiles="https://distfiles.AdelieLinux.org/source/${pkgname}/${pkgname}-${version}.tar.xz"
|
distfiles="https://distfiles.AdelieLinux.org/source/${pkgname}/${pkgname}-${version}.tar.xz"
|
||||||
checksum=31bb3ead012e23a1f3b4bedc8a376655d3b65c66d37e6acc865a9b72163f50ea
|
checksum=31bb3ead012e23a1f3b4bedc8a376655d3b65c66d37e6acc865a9b72163f50ea
|
||||||
|
|
||||||
|
@ -26,6 +26,8 @@ case "${XBPS_TARGET_MACHINE}" in
|
||||||
mipsel-musl) _glibc="ld.so.1" _musl="ld-musl-mipsel-sf.so.1";;
|
mipsel-musl) _glibc="ld.so.1" _musl="ld-musl-mipsel-sf.so.1";;
|
||||||
mipselhf-musl) _glibc="ld.so.1" _musl="ld-musl-mipsel.so.1";;
|
mipselhf-musl) _glibc="ld.so.1" _musl="ld-musl-mipsel.so.1";;
|
||||||
x86_64-musl) _glibc="ld-linux-x86-64.so.2" _musl="ld-musl-x86_64.so.1";;
|
x86_64-musl) _glibc="ld-linux-x86-64.so.2" _musl="ld-musl-x86_64.so.1";;
|
||||||
|
ppc64le-musl) _glibc="ld64.so.2" _musl="ld-musl-powerpc64le.so.1";;
|
||||||
|
ppc64-musl) _glibc="ld64.so.2" _musl="ld-musl-powerpc64.so.1";;
|
||||||
*-musl) broken="Template does not yet recognize this arch, please fix";;
|
*-musl) broken="Template does not yet recognize this arch, please fix";;
|
||||||
*) broken="Only for musl libc";;
|
*) broken="Only for musl libc";;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue