From owner-svn-ports-all@freebsd.org Tue Sep 18 15:10:05 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 79AB010A0761; Tue, 18 Sep 2018 15:10:05 +0000 (UTC) (envelope-from riggs@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 2F59074738; Tue, 18 Sep 2018 15:10:05 +0000 (UTC) (envelope-from riggs@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 2A3D22192C; Tue, 18 Sep 2018 15:10:05 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8IFA4dj077353; Tue, 18 Sep 2018 15:10:04 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8IFA44C077352; Tue, 18 Sep 2018 15:10:04 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201809181510.w8IFA44C077352@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Tue, 18 Sep 2018 15:10:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r480031 - branches/2018Q3/security/libargon2 X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2018Q3/security/libargon2 X-SVN-Commit-Revision: 480031 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.27 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: Tue, 18 Sep 2018 15:10:05 -0000 Author: riggs Date: Tue Sep 18 15:10:04 2018 New Revision: 480031 URL: https://svnweb.freebsd.org/changeset/ports/480031 Log: MFH: r480029 Fix runtime error: remove -march=native as optimisation target Details: The upstream Makefile contains -march=native as optimisation which leads to unconditional use of AVX instructions if built on a machine that has AVX support. Subsequently this causes SIGILL on processors without AVX, including latest-generation Atom descendants. PR: 225922 Reported by: arthur@qeng-ho.org Approved by: hsw@bitmark.com (maintainer, implicit) Approved by: ports-secteam (riggs) Modified: branches/2018Q3/security/libargon2/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/security/libargon2/Makefile ============================================================================== --- branches/2018Q3/security/libargon2/Makefile Tue Sep 18 15:09:10 2018 (r480030) +++ branches/2018Q3/security/libargon2/Makefile Tue Sep 18 15:10:04 2018 (r480031) @@ -3,6 +3,7 @@ PORTNAME= libargon2 PORTVERSION= 20171227 +PORTREVISION= 1 CATEGORIES= security devel MAINTAINER= hsw@bitmark.com @@ -20,7 +21,8 @@ GH_PROJECT= phc-winner-argon2 MAKE_JOBS_UNSAFE= yes LIBARGON2= libargon2.so.0 -MAKE_ARGS+= SO_LDFLAGS="-shared -Wl,-soname=${LIBARGON2}" +MAKE_ARGS+= SO_LDFLAGS="-shared -Wl,-soname=${LIBARGON2}" \ + OPTTARGET="generic" # remove multiarch as this is only for Linux SUBST= s/@HOST_MULTIARCH@//g;