pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/valgrind



Module Name:    pkgsrc
Committed By:   wiz
Date:           Wed Dec  4 07:24:59 UTC 2024

Modified Files:
        pkgsrc/devel/valgrind: Makefile

Log Message:
valgrind: enable support on Linux aarch64

>From Periklis Akritidis on tech-pkg.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 pkgsrc/devel/valgrind/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/valgrind/Makefile
diff -u pkgsrc/devel/valgrind/Makefile:1.38 pkgsrc/devel/valgrind/Makefile:1.39
--- pkgsrc/devel/valgrind/Makefile:1.38 Fri Aug 11 08:45:47 2023
+++ pkgsrc/devel/valgrind/Makefile      Wed Dec  4 07:24:59 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.38 2023/08/11 08:45:47 nia Exp $
+# $NetBSD: Makefile,v 1.39 2024/12/04 07:24:59 wiz Exp $
 
 DISTNAME=      valgrind-3.20.0
 CATEGORIES=    devel
@@ -18,7 +18,7 @@ GNU_CONFIGURE=                yes
 ONLY_FOR_PLATFORM+=    Darwin-[0-9].*-i386 Darwin-[0-9].*-x86_64
 ONLY_FOR_PLATFORM+=    Darwin-1[0-7].*-i386 Darwin-1[0-7].*-x86_64
 ONLY_FOR_PLATFORM+=    FreeBSD-*-x86_64 FreeBSD-*-i386
-ONLY_FOR_PLATFORM+=    Linux-*-x86_64 Linux-*-i386 Linux-*-arm*
+ONLY_FOR_PLATFORM+=    Linux-*-x86_64 Linux-*-i386 Linux-*-arm* Linux-*-aarch64
 ONLY_FOR_PLATFORM+=    SunOS-*-i386 SunOS-*-x86_64
 
 USE_TOOLS+=            gmake perl:run
@@ -37,6 +37,10 @@ RELRO_SUPPORTED=     no
 PLIST_SUBST+=          VGCONF_ARCH_PRI=arm
 .endif
 
+.if ${MACHINE_ARCH} == "aarch64"
+PLIST_SUBST+=          VGCONF_ARCH_PRI=arm64
+.endif
+
 .if ${MACHINE_ARCH} == "i386"
 PLIST_SUBST+=          VGCONF_ARCH_PRI=x86
 .endif



Home | Main Index | Thread Index | Old Index