From owner-svn-ports-head@freebsd.org Sun Dec 22 18:08:08 2019 Return-Path: Delivered-To: svn-ports-head@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 588C81D8FA3; Sun, 22 Dec 2019 18:08:08 +0000 (UTC) (envelope-from pkubaj@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47gr7X1ZR4z4f5C; Sun, 22 Dec 2019 18:08:08 +0000 (UTC) (envelope-from pkubaj@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 312F1339A; Sun, 22 Dec 2019 18:08:08 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBMI88tU086239; Sun, 22 Dec 2019 18:08:08 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBMI88FM086238; Sun, 22 Dec 2019 18:08:08 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201912221808.xBMI88FM086238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Sun, 22 Dec 2019 18:08:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520647 - head/science/agrum X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/science/agrum X-SVN-Commit-Revision: 520647 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.29 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: Sun, 22 Dec 2019 18:08:08 -0000 Author: pkubaj Date: Sun Dec 22 18:08:07 2019 New Revision: 520647 URL: https://svnweb.freebsd.org/changeset/ports/520647 Log: science/agrum: fix build on powerpc64 elfv2 LLD can't link this port on powerpc64 elfv2: ld: error: relocation refers to a discarded section: .text._ZN3gum9ExceptionD2Ev >>> defined in src/CMakeFiles/agrum.dir/agrum/core/approximations/approximationScheme.cpp.o >>> section group signature: _ZN3gum9ExceptionD2Ev >>> prevailing definition is in src/CMakeFiles/agrum.dir/agrum/core/approximations/IApproximationSchemeConfiguration.cpp.o >>> referenced by approximationScheme.cpp >>> src/CMakeFiles/agrum.dir/agrum/core/approximations/approximationScheme.cpp.o:(gum::OutOfLowerBound::OutOfLowerBound(std::__1::basic_string, std::__1::allocator >, std::__1::basic_string, std::__1::allocator >)) PR: 242804 Approved by: yuri (maintainer) Modified: head/science/agrum/Makefile Modified: head/science/agrum/Makefile ============================================================================== --- head/science/agrum/Makefile Sun Dec 22 17:59:20 2019 (r520646) +++ head/science/agrum/Makefile Sun Dec 22 18:08:07 2019 (r520647) @@ -2,6 +2,7 @@ PORTNAME= agrum DISTVERSION= 0.16.4 +PORTREVISION= 1 CATEGORIES= science math MAINTAINER= yuri@FreeBSD.org @@ -13,6 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake USE_GITLAB= yes USE_LDCONFIG= yes +LLD_UNSAFE= yes GL_ACCOUNT= agrumery GL_PROJECT= aGrUM