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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0CE4415808B for ; Mon, 9 Sep 2024 18:20:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36D3BE2A06; Mon, 9 Sep 2024 18:20:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F998E2A09 for ; Mon, 9 Sep 2024 18:20:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6A57A343009 for ; Mon, 9 Sep 2024 18:20:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A75AC1F47 for ; Mon, 9 Sep 2024 18:20:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1725905715.5eef57ad9c2ee2dce41ebccc5e8a4f95731e26d6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/hipSOLVER/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/hipSOLVER/hipSOLVER-6.1.1.ebuild X-VCS-Directories: sci-libs/hipSOLVER/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5eef57ad9c2ee2dce41ebccc5e8a4f95731e26d6 X-VCS-Branch: master Date: Mon, 9 Sep 2024 18:20:39 +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: 748d7158-911f-4438-a839-da0e618e92ca X-Archives-Hash: c76d636b621d99e717aba912ad5e2ccb commit: 5eef57ad9c2ee2dce41ebccc5e8a4f95731e26d6 Author: Sv. Lockal gmail com> AuthorDate: Sat Jul 20 17:26:46 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Sep 9 18:15:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eef57ad sci-libs/hipSOLVER: strip unsupported flags for potentially switched compiler Bug: https://bugs.gentoo.org/936099 Signed-off-by: Sv. Lockal gmail.com> Signed-off-by: Sam James gentoo.org> sci-libs/hipSOLVER/hipSOLVER-6.1.1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sci-libs/hipSOLVER/hipSOLVER-6.1.1.ebuild b/sci-libs/hipSOLVER/hipSOLVER-6.1.1.ebuild index be450babaed3..99c4a9c0ca41 100644 --- a/sci-libs/hipSOLVER/hipSOLVER-6.1.1.ebuild +++ b/sci-libs/hipSOLVER/hipSOLVER-6.1.1.ebuild @@ -36,6 +36,8 @@ PATCHES=( ) src_configure() { + rocm_use_hipcc + local mycmakeargs=( -DAMDGPU_TARGETS="$(get_amdgpu_flags)" -DBUILD_FILE_REORG_BACKWARD_COMPATIBILITY=OFF @@ -43,5 +45,5 @@ src_configure() { -DBUILD_WITH_SPARSE=$(usex sparse ON OFF) ) - CXX=hipcc cmake_src_configure + cmake_src_configure }