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 6E5F21581FD for ; Wed, 10 Sep 2025 07:43:41 +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 55283340C40 for ; Wed, 10 Sep 2025 07:43:41 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 4EFE6110377; Wed, 10 Sep 2025 07:43:40 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 4ADCA110377 for ; Wed, 10 Sep 2025 07:43:40 +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 0D704335D77 for ; Wed, 10 Sep 2025 07:43:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 971FA38D4 for ; Wed, 10 Sep 2025 07:43:38 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1757490213.216d29c0d8aaa94152c2fe9c56cbe04743a5e57a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: llvm-runtimes/offload/ X-VCS-Repository: repo/gentoo X-VCS-Files: llvm-runtimes/offload/offload-22.0.0.9999.ebuild X-VCS-Directories: llvm-runtimes/offload/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 216d29c0d8aaa94152c2fe9c56cbe04743a5e57a X-VCS-Branch: master Date: Wed, 10 Sep 2025 07:43:38 +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: 72da0b02-08c3-4b41-9cd3-b7c4422ec48d X-Archives-Hash: 2a4683b1ba6c2bfa02630cbbabad242e commit: 216d29c0d8aaa94152c2fe9c56cbe04743a5e57a Author: Michał Górny gentoo org> AuthorDate: Wed Sep 10 07:09:46 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 10 07:43:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=216d29c0 llvm-runtimes/offload: Remove DeviceRTL bits from 22.0.0.9999 Upstream has stopped using DeviceRTL bits in offload, so remove the relevant bits from CMake invocation. We are supposed to be building them through openmp package somehow. Signed-off-by: Michał Górny gentoo.org> llvm-runtimes/offload/offload-22.0.0.9999.ebuild | 4 ---- 1 file changed, 4 deletions(-) diff --git a/llvm-runtimes/offload/offload-22.0.0.9999.ebuild b/llvm-runtimes/offload/offload-22.0.0.9999.ebuild index 5f4ab8697496..6075a4e2bf97 100644 --- a/llvm-runtimes/offload/offload-22.0.0.9999.ebuild +++ b/llvm-runtimes/offload/offload-22.0.0.9999.ebuild @@ -87,16 +87,13 @@ src_configure() { local ffi_cflags=$($(tc-getPKG_CONFIG) --cflags-only-I libffi) local ffi_ldflags=$($(tc-getPKG_CONFIG) --libs-only-L libffi) local plugins="host" - local build_devicertl=FALSE if has "${CHOST%%-*}" aarch64 powerpc64le x86_64; then if use llvm_targets_AMDGPU; then plugins+=";amdgpu" - build_devicertl=TRUE fi if use llvm_targets_NVPTX; then plugins+=";cuda" - build_devicertl=TRUE fi fi @@ -107,7 +104,6 @@ src_configure() { -DOFFLOAD_INCLUDE_TESTS=$(usex test) -DLIBOMPTARGET_PLUGINS_TO_BUILD="${plugins}" -DLIBOMPTARGET_OMPT_SUPPORT="$(usex ompt)" - -DLIBOMPTARGET_BUILD_DEVICERTL_BCLIB="${build_devicertl}" # this breaks building static target libs -DBUILD_SHARED_LIBS=OFF