From owner-svn-ports-all@freebsd.org Fri May 11 06:24:44 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4ED7AFB9031; Fri, 11 May 2018 06:24:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 003858161D; Fri, 11 May 2018 06:24:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D6BB73C3F; Fri, 11 May 2018 06:24:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4B6OhVv017180; Fri, 11 May 2018 06:24:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4B6Ohxl017178; Fri, 11 May 2018 06:24:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201805110624.w4B6Ohxl017178@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 11 May 2018 06:24:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r469612 - in branches/2018Q2/emulators/rpcs3: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q2/emulators/rpcs3: . files X-SVN-Commit-Revision: 469612 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 May 2018 06:24:44 -0000 Author: jbeich Date: Fri May 11 06:24:43 2018 New Revision: 469612 URL: https://svnweb.freebsd.org/changeset/ports/469612 Log: MFH: r469611 emulators/rpcs3: disable assertions Assertion failed: (ObjectBufferMap.find(Key) == ObjectBufferMap.end() && "Second attempt to perform debug registration."), function NotifyObjectEmitted, file llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp, line 167. Approved by: ports-secteam blanket Added: branches/2018Q2/emulators/rpcs3/files/patch-no-asserts - copied unchanged from r469611, head/emulators/rpcs3/files/patch-no-asserts Modified: branches/2018Q2/emulators/rpcs3/Makefile Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q2/emulators/rpcs3/Makefile Fri May 11 06:24:02 2018 (r469611) +++ branches/2018Q2/emulators/rpcs3/Makefile Fri May 11 06:24:43 2018 (r469612) @@ -4,6 +4,7 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v DISTVERSION= 0.0.5-259 DISTVERSIONSUFFIX= -g76a1d0d8f +PORTREVISION= 1 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Copied: branches/2018Q2/emulators/rpcs3/files/patch-no-asserts (from r469611, head/emulators/rpcs3/files/patch-no-asserts) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q2/emulators/rpcs3/files/patch-no-asserts Fri May 11 06:24:43 2018 (r469612, copy of r469611, head/emulators/rpcs3/files/patch-no-asserts) @@ -0,0 +1,15 @@ +https://github.com/RPCS3/rpcs3/issues/3745 + +--- rpcs3/CMakeLists.txt.orig 2018-05-09 22:44:51.000000000 +0000 ++++ rpcs3/CMakeLists.txt +@@ -81,6 +81,10 @@ add_custom_command(OUTPUT something_that_never_exists + # Check for a sufficient compiler and set build options + include(ConfigureCompiler) + ++if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug") ++ add_definitions(-DNDEBUG) ++endif() ++ + if(WIN32) + add_definitions(-DUNICODE) + add_definitions(-D_WIN32_WINNT=0x0601)