Received: by mail.netbsd.org (Postfix, from userid 605) id 6BC1484E5B; Sat, 25 Sep 2021 05:27:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A5FFB84E54 for ; Sat, 25 Sep 2021 05:27:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id pcR_gb5nMZFn for ; Sat, 25 Sep 2021 05:27:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 00CE784CE3 for ; Sat, 25 Sep 2021 05:27:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E1B6DFA97; Sat, 25 Sep 2021 05:27:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163254766473310" MIME-Version: 1.0 Date: Sat, 25 Sep 2021 05:27:44 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/libretro-pcsx-rearmed To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210925052744.E1B6DFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163254766473310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Sep 25 05:27:44 UTC 2021 Modified Files: pkgsrc/emulators/libretro-pcsx-rearmed: Makefile Log Message: libretro-pcsx-rearmed: on armv7, make sure the compiler is running in neon mode To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/emulators/libretro-pcsx-rearmed/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163254766473310 Content-Disposition: inline Content-Length: 786 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/libretro-pcsx-rearmed/Makefile diff -u pkgsrc/emulators/libretro-pcsx-rearmed/Makefile:1.12 pkgsrc/emulators/libretro-pcsx-rearmed/Makefile:1.13 --- pkgsrc/emulators/libretro-pcsx-rearmed/Makefile:1.12 Mon Jun 1 17:41:02 2020 +++ pkgsrc/emulators/libretro-pcsx-rearmed/Makefile Sat Sep 25 05:27:44 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2020/06/01 17:41:02 nia Exp $ +# $NetBSD: Makefile,v 1.13 2021/09/25 05:27:44 nia Exp $ DISTNAME= libretro-pcsx-rearmed-20200526 PKGREVISION= 1 @@ -21,6 +21,7 @@ MAKE_FLAGS+= WANT_ZLIB=0 # disable vendo .include "../../mk/bsd.prefs.mk" .if ${MACHINE_ARCH} == "earmv7hf" +CFLAGS+= -march=armv7-a+neon -mfpu=neon MAKE_FLAGS+= ARCH=arm MAKE_FLAGS+= DYNAREC=ari64 MAKE_FLAGS+= HAVE_NEON=1 --_----------=_163254766473310--