Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Mar 2022 21:41:43 GMT
From:      =?utf-8?Q?Stefan E=C3=9Fer?= <se@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: c3f6cad5f504 - main - security/hashcat: mark as broken on aarch64
Message-ID:  <202203222141.22MLfhTh028120@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by se:

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

commit c3f6cad5f504ca7fc1b64a616506a80786586efd
Author:     Stefan Eßer <se@FreeBSD.org>
AuthorDate: 2022-03-22 21:36:40 +0000
Commit:     Stefan Eßer <se@FreeBSD.org>
CommitDate: 2022-03-22 21:36:40 +0000

    security/hashcat: mark as broken on aarch64
    
    An attempt to fix the build failed due to dependencies on functions
    that might exist on other platforms (e.g. on Linux).
    
    Building with software emulation of special functions (e.g, for CRC)
    may be possible, resulting in significantly reduced performance.
---
 security/hashcat/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/security/hashcat/Makefile b/security/hashcat/Makefile
index 05532bc8aeb9..e95f62266632 100644
--- a/security/hashcat/Makefile
+++ b/security/hashcat/Makefile
@@ -10,8 +10,9 @@ COMMENT=	Advanced CPU-based password recovery utility
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/docs/license.txt
 
-NOT_FOR_ARCHS=	powerpc powerpc64 powerpcspe sparc64
+NOT_FOR_ARCHS=	powerpc powerpc64 powerpcspe sparc64 aarch64
 NOT_FOR_ARCHS_REASON=	fails to compile: compiling for big-endian architecture not supported
+NOT_FOR_ARCHS_REASON_aarch64=	fails to compile
 
 BUILD_DEPENDS=	minizip:archivers/minizip
 



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