git: 3595156b716c - main - net-p2p/monero-cli: fix target emulation on powerpc64le
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 08 Nov 2021 16:51:45 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=3595156b716c40c4ebfcd4ff10dde9a949e5beee commit 3595156b716c40c4ebfcd4ff10dde9a949e5beee Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2021-11-08 16:49:34 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2021-11-08 16:49:34 +0000 net-p2p/monero-cli: fix target emulation on powerpc64le --- net-p2p/monero-cli/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-p2p/monero-cli/Makefile b/net-p2p/monero-cli/Makefile index e101575d8be8..621c5fe5e9ca 100644 --- a/net-p2p/monero-cli/Makefile +++ b/net-p2p/monero-cli/Makefile @@ -68,8 +68,10 @@ LD_EMULATION= elf_amd64 LD_EMULATION= elf_i386_fbsd .elif ${ARCH} == powerpc LD_EMULATION= elf32ppc -.elif ${ARCH:Mpowerpc64*} +.elif ${ARCH} == powerpc64 LD_EMULATION= elf64ppc +.elif ${ARCH} == powerpc64le +LD_EMULATION= elf64lppc .endif CMAKE_ARGS+= -DLD_RAW_FLAGS:STRING=-m${LD_EMULATION}