From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 34FD31581FD for ; Sat, 06 Sep 2025 15:13:31 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1FD1C340D3A for ; Sat, 06 Sep 2025 15:13:31 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 4F61511057A; Sat, 06 Sep 2025 15:13:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 4A4FE11057A for ; Sat, 06 Sep 2025 15:13:13 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 07231340E16 for ; Sat, 06 Sep 2025 15:13:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DDD138E7 for ; Sat, 06 Sep 2025 15:13:10 +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: <1757171569.e89cf625f2ab67664083dfbeb31bbc8c7302631c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/rocm.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e89cf625f2ab67664083dfbeb31bbc8c7302631c X-VCS-Branch: master Date: Sat, 06 Sep 2025 15:13:10 +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: 70244f6a-81bb-4cf3-88d3-6bec0ccfbc18 X-Archives-Hash: 3be0496348836d57cacec5fa6c5f5097 commit: e89cf625f2ab67664083dfbeb31bbc8c7302631c Author: Sv. Lockal gmail com> AuthorDate: Sun Aug 10 18:36:48 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Sep 6 15:12:49 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89cf625 rocm.eclass: update targets for rocm >= 6.4.3 libraries According to "System requirements" webpage, gfx1101/gfx1200/gfx1201 are now supported. >From the source code few libraries have gfx1103/gfx1150/gfx1151 support, which is not officially announced. Some released components fail to compile on gfx1150/gfx1151 - for these components live ebuilds should be introduced. Bug: https://bugs.gentoo.org/949494 Signed-off-by: Sv. Lockal gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43406 Signed-off-by: Sam James gentoo.org> eclass/rocm.eclass | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/eclass/rocm.eclass b/eclass/rocm.eclass index a7601bf43f2d..3cdcd44c0ae2 100644 --- a/eclass/rocm.eclass +++ b/eclass/rocm.eclass @@ -184,7 +184,7 @@ _rocm_set_globals() { gfx906 gfx908 gfx90a gfx942 gfx1030 gfx1100 ) ;; - 6.*|9999) + 6.4.[0-2]) unofficial_amdgpu_targets=( gfx803 gfx900 gfx906 gfx940 gfx941 gfx1010 gfx1011 gfx1012 @@ -194,6 +194,16 @@ _rocm_set_globals() { gfx908 gfx90a gfx942 gfx1030 gfx1100 ) ;; + 6.*|9999) + unofficial_amdgpu_targets=( + gfx803 gfx900 gfx906 gfx940 gfx941 + gfx1010 gfx1011 gfx1012 + gfx1031 gfx1102 gfx1103 gfx1150 gfx1151 + ) + official_amdgpu_targets=( + gfx908 gfx90a gfx942 gfx1030 gfx1100 gfx1101 gfx1200 gfx1201 + ) + ;; *) die "Unknown ROCm major version! Please update rocm.eclass before bumping to new ebuilds" ;;