Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Mar 2025 16:39:27 GMT
From:      Kyle Evans <kevans@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: a80672dff940 - main - sysutils/reptyr: allow building on aarch64 as well
Message-ID:  <202503231639.52NGdRs6067815@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by kevans:

URL: https://cgit.FreeBSD.org/ports/commit/?id=a80672dff94035067fff058a68704c03e58b3285

commit a80672dff94035067fff058a68704c03e58b3285
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2025-03-23 16:38:52 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2025-03-23 16:38:52 +0000

    sysutils/reptyr: allow building on aarch64 as well
    
    reptyr has technically supported FreeBSD/arm* since 0.10.0 was released
    in June 2023; loosen up the build restrictions to build on arm64 now.
    
    armv7 should also work fine, but I don't have any native armv7 around
    to test that -- it doesn't work under COMPAT32 on aarch64, but I suspect
    that's a ptrace(2) bug/shortcoming rather than reptyr failing on 32-bit
    ARM.
    
    PR:             285161
    Approved by:    maintainer timeout (2+ weeks, andoriyu@gmail.com)
---
 sysutils/reptyr/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysutils/reptyr/Makefile b/sysutils/reptyr/Makefile
index a094ef82863c..05cf15563c71 100644
--- a/sysutils/reptyr/Makefile
+++ b/sysutils/reptyr/Makefile
@@ -16,7 +16,7 @@ MAKE_ARGS=	BASHCOMPDIR=${PREFIX}/share/bash-completion/completions \
 		MANDIR=${PREFIX}/share/man
 USES=		gmake
 
-ONLY_FOR_ARCHS=	i386 amd64
+ONLY_FOR_ARCHS=	aarch64 i386 amd64
 
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/reptyr


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202503231639.52NGdRs6067815>