From owner-dev-commits-ports-branches@freebsd.org Sun Aug 22 07:45:23 2021 Return-Path: Delivered-To: dev-commits-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CA26A65008E; Sun, 22 Aug 2021 07:45:23 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GsnTv5QCTz3sk7; Sun, 22 Aug 2021 07:45:23 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A2E2A1CD5A; Sun, 22 Aug 2021 07:45:23 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 17M7jNan018622; Sun, 22 Aug 2021 07:45:23 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 17M7jNYF018621; Sun, 22 Aug 2021 07:45:23 GMT (envelope-from git) Date: Sun, 22 Aug 2021 07:45:23 GMT Message-Id: <202108220745.17M7jNYF018621@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org From: Jan Beich Subject: git: f302216145c1 - 2021Q3 - emulators/yuzu: exclude on non-amd64 for now MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: jbeich X-Git-Repository: ports X-Git-Refname: refs/heads/2021Q3 X-Git-Reftype: branch X-Git-Commit: f302216145c10a30b4d11951a1611cb7725b8297 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the quarterly branches of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2021 07:45:23 -0000 The branch 2021Q3 has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=f302216145c10a30b4d11951a1611cb7725b8297 commit f302216145c10a30b4d11951a1611cb7725b8297 Author: Jan Beich AuthorDate: 2021-08-22 07:37:11 +0000 Commit: Jan Beich CommitDate: 2021-08-22 07:45:12 +0000 emulators/yuzu: exclude on non-amd64 for now In file included from src/common/wall_clock.cpp:7: src/./common/uint128.h:16:10: fatal error: x86intrin.h: No such file or directory 16 | #include | ^~~~~~~~~~~~~ Reported by: pkg-fallout (cherry picked from commit 51c03a9dbe214e813cffd342fa040b9c753fc756) --- emulators/yuzu/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/emulators/yuzu/Makefile b/emulators/yuzu/Makefile index 97a1f7212f69..38631790e3f9 100644 --- a/emulators/yuzu/Makefile +++ b/emulators/yuzu/Makefile @@ -18,8 +18,9 @@ LICENSE_FILE_LGPL21+ = ${_LICENSE_STORE}/LGPL21 # soundtouch LICENSE_FILE_LGPL3+ = ${_LICENSE_STORE}/LGPL3 # sirit LICENSE_FILE_MIT= ${WRKSRC}/externals/sirit/externals/SPIRV-Headers/LICENSE -ONLY_FOR_ARCHS= aarch64 amd64 powerpc64 -ONLY_FOR_ARCHS_REASON= requires int128 +ONLY_FOR_ARCHS= aarch64 amd64 +ONLY_FOR_ARCHS_REASON= requires int128 and dynarmic backend +BROKEN_aarch64= https://github.com/yuzu-emu/yuzu/issues/5290 BUILD_DEPENDS= catch>0:devel/catch \ boost-libs>0:devel/boost-libs \