Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6403084DA5 for ; Fri, 4 Aug 2023 14:27:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id WXr-r__0EcMQ for ; Fri, 4 Aug 2023 14:27:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AC86884D17 for ; Fri, 4 Aug 2023 14:27:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CFD2CFBDB; Fri, 4 Aug 2023 14:27:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1691159276279910" MIME-Version: 1.0 Date: Fri, 4 Aug 2023 14:27:56 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/flycast To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230804142756.CFD2CFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1691159276279910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Aug 4 14:27:56 UTC 2023 Modified Files: pkgsrc/emulators/flycast: Makefile.common Log Message: flycast: Bump compiler requirement due to ICE. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/emulators/flycast/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1691159276279910 Content-Disposition: inline Content-Length: 920 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/flycast/Makefile.common diff -u pkgsrc/emulators/flycast/Makefile.common:1.3 pkgsrc/emulators/flycast/Makefile.common:1.4 --- pkgsrc/emulators/flycast/Makefile.common:1.3 Tue Jul 18 18:02:46 2023 +++ pkgsrc/emulators/flycast/Makefile.common Fri Aug 4 14:27:56 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.3 2023/07/18 18:02:46 nia Exp $ +# $NetBSD: Makefile.common,v 1.4 2023/08/04 14:27:56 nia Exp $ # used by emulators/flycast/Makefile # used by emulators/libretro-flycast/Makefile @@ -17,6 +17,11 @@ USE_CMAKE= yes USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ +# Theoretically older versions are fine, but internal compiler +# error with GCC 7... +# core/hw/sh4/sh4_interrupts.cpp:250:1: internal compiler error: in gen_reg_rtx, at emit-rtl.c:1058 +GCC_REQD+= 10 + CMAKE_ARGS+= -DUSE_HOST_LIBZIP=ON CMAKE_ARGS+= -DUSE_VULKAN=OFF CMAKE_ARGS+= -DUSE_DX9=OFF --_----------=_1691159276279910--