From owner-svn-ports-head@freebsd.org Fri Aug 10 10:20:16 2018 Return-Path: Delivered-To: svn-ports-head@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 77BAF1065707; Fri, 10 Aug 2018 10:20:16 +0000 (UTC) (envelope-from arrowd@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 2B5C683C18; Fri, 10 Aug 2018 10:20:16 +0000 (UTC) (envelope-from arrowd@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 0CB8126BCB; Fri, 10 Aug 2018 10:20:16 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7AAKFT4081137; Fri, 10 Aug 2018 10:20:15 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7AAKFM5081135; Fri, 10 Aug 2018 10:20:15 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <201808101020.w7AAKFM5081135@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Fri, 10 Aug 2018 10:20:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476827 - in head/math/cryptominisat: . files X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: in head/math/cryptominisat: . files X-SVN-Commit-Revision: 476827 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Aug 2018 10:20:16 -0000 Author: arrowd Date: Fri Aug 10 10:20:15 2018 New Revision: 476827 URL: https://svnweb.freebsd.org/changeset/ports/476827 Log: math/cryptominisat: Unbreak on aarch64. PR: 229724 Submitted by: Greg V Approved by: tcberner (mentor) Added: head/math/cryptominisat/files/ head/math/cryptominisat/files/patch-CMakeLists.txt (contents, props changed) Modified: head/math/cryptominisat/Makefile Modified: head/math/cryptominisat/Makefile ============================================================================== --- head/math/cryptominisat/Makefile Fri Aug 10 10:05:19 2018 (r476826) +++ head/math/cryptominisat/Makefile Fri Aug 10 10:20:15 2018 (r476827) @@ -2,6 +2,7 @@ PORTNAME= cryptominisat DISTVERSION= 5.6.3 +PORTREVISION= 1 CATEGORIES= math MAINTAINER= arrowd@FreeBSD.org Added: head/math/cryptominisat/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cryptominisat/files/patch-CMakeLists.txt Fri Aug 10 10:20:15 2018 (r476827) @@ -0,0 +1,17 @@ +The `-mtune=native` flag is not supported on aarch64, remove it. + +--- CMakeLists.txt.orig 2018-07-11 20:29:53 UTC ++++ CMakeLists.txt +@@ -182,11 +182,11 @@ if (NOT MSVC) + add_compile_options( -pthread ) + + add_compile_options("$<$:-O2>") +- add_compile_options("$<$:-mtune=native>") ++ #add_compile_options("$<$:-mtune=native>") + + add_compile_options("$<$:-O2>") + add_compile_options("$<$:-g0>") +- add_compile_options("$<$:-mtune=native>") ++ #add_compile_options("$<$:-mtune=native>") + + add_compile_options("$<$:-O0>")