From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A38213835A for ; Thu, 11 Jun 2020 23:26:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22CA7E0937; Thu, 11 Jun 2020 23:26:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0E36EE0937 for ; Thu, 11 Jun 2020 23:26:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F40B934F066 for ; Thu, 11 Jun 2020 23:26:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00A7D291 for ; Thu, 11 Jun 2020 23:26:09 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1591917916.18d842851da452a7c6acaa3ea9fc61158bb6bb50.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/openblas/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/openblas/openblas-0.3.9-r1.ebuild X-VCS-Directories: sci-libs/openblas/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 18d842851da452a7c6acaa3ea9fc61158bb6bb50 X-VCS-Branch: master Date: Thu, 11 Jun 2020 23:26:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 76596f41-7501-4f19-989d-3f3c4e1b3cac X-Archives-Hash: d6b7e8ebabd1497e700a8872882dc86d commit: 18d842851da452a7c6acaa3ea9fc61158bb6bb50 Author: Michael Orlitzky gentoo org> AuthorDate: Thu Jun 11 22:59:06 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Thu Jun 11 23:25:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18d84285 sci-libs/openblas: disable -fcheck=all as well. We already had to disable -fcheck-bounds, but -fcheck=all enables the bounds checks in addition to whatever else it enables, so we have to filter that flag too. Bug: https://bugs.gentoo.org/726474 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky gentoo.org> sci-libs/openblas/openblas-0.3.9-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/openblas/openblas-0.3.9-r1.ebuild b/sci-libs/openblas/openblas-0.3.9-r1.ebuild index cb255367b63..b0daf6becad 100644 --- a/sci-libs/openblas/openblas-0.3.9-r1.ebuild +++ b/sci-libs/openblas/openblas-0.3.9-r1.ebuild @@ -34,7 +34,7 @@ pkg_setup() { # We need to filter these while building the library, and not just # while building the test suite. Will hopefully get fixed upstream: # https://github.com/xianyi/OpenBLAS/issues/2657 - use test && filter-flags "-fbounds-check" "-fcheck=bounds" + use test && filter-flags "-fbounds-check" "-fcheck=bounds" "-fcheck=all" export CC=$(tc-getCC) FC=$(tc-getFC)