From owner-svn-ports-all@freebsd.org Fri Nov 6 15:20:07 2020 Return-Path: Delivered-To: svn-ports-all@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 10742440F66; Fri, 6 Nov 2020 15:20:07 +0000 (UTC) (envelope-from yuri@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CSPFy73pnz3t78; Fri, 6 Nov 2020 15:20:06 +0000 (UTC) (envelope-from yuri@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 E543B27201; Fri, 6 Nov 2020 15:20:06 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0A6FK6wh045078; Fri, 6 Nov 2020 15:20:06 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0A6FK6QI045077; Fri, 6 Nov 2020 15:20:06 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202011061520.0A6FK6QI045077@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 6 Nov 2020 15:20:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r554298 - head/math/onednn X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/onednn X-SVN-Commit-Revision: 554298 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.34 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, 06 Nov 2020 15:20:07 -0000 Author: yuri Date: Fri Nov 6 15:20:06 2020 New Revision: 554298 URL: https://svnweb.freebsd.org/changeset/ports/554298 Log: math/onednn: Force the -O3 optimization level because -O2 exposes a clang bug Modified: head/math/onednn/Makefile Modified: head/math/onednn/Makefile ============================================================================== --- head/math/onednn/Makefile Fri Nov 6 14:21:15 2020 (r554297) +++ head/math/onednn/Makefile Fri Nov 6 15:20:06 2020 (r554298) @@ -3,6 +3,7 @@ PORTNAME= onednn DISTVERSIONPREFIX= v DISTVERSION= 1.7 +PORTREVISION= 1 CATEGORIES= math # machine-learning MAINTAINER= yuri@FreeBSD.org @@ -30,6 +31,8 @@ OPENMP_BROKEN_OFF= still requires omp.h, see https://g CXXFLAGS_amd64= -msse4.1 CXXFLAGS_i386= -msse4.1 + +CXXFLAGS:= ${CXXFLAGS:S/-O2/-O3/} # clang writes wrong binary code when -O2 optimization is used and one testcase is failing, see https://github.com/oneapi-src/oneDNN/issues/873#issuecomment-722778910 .include