From unknown Wed Jun 18 23:05:54 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#76337 <76337@debbugs.gnu.org> To: bug#76337 <76337@debbugs.gnu.org> Subject: Status: [PATCH] gnu: llvm-spirv-translator: Fix cross compilation Reply-To: bug#76337 <76337@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:05:54 +0000 retitle 76337 [PATCH] gnu: llvm-spirv-translator: Fix cross compilation=20 reassign 76337 guix-patches submitter 76337 Yarl Baudig severity 76337 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 16 09:08:42 2025 Received: (at submit) by debbugs.gnu.org; 16 Feb 2025 14:08:42 +0000 Received: from localhost ([127.0.0.1]:32954 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tjfK6-0005WF-8O for submit@debbugs.gnu.org; Sun, 16 Feb 2025 09:08:42 -0500 Received: from lists.gnu.org ([2001:470:142::17]:37270) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tjfK3-0005Vx-4H for submit@debbugs.gnu.org; Sun, 16 Feb 2025 09:08:40 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tjfJt-0000tX-Ct for guix-patches@gnu.org; Sun, 16 Feb 2025 09:08:30 -0500 Received: from msg-1.mailo.com ([213.182.54.11] helo=mailo.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tjfJr-00027Q-DL for guix-patches@gnu.org; Sun, 16 Feb 2025 09:08:29 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=mailoo.org; s=mailo; t=1739714902; bh=/UeXn/k02xMMcb3DFSFbC/9zihqTM+WTKa61BqfTFUM=; h=X-EA-Auth:From:To:Cc:Subject:Date:Message-ID:MIME-Version: Content-Transfer-Encoding; b=F9QbELD/aMpISntkO+sqjkxPsOw4lRqf6zCOgwY8tbTU4QyoGak9h5/KhDi1qKE7b yfjfujznDPBF0kCJZdrsmbauflRmdkyTJXu+//4pr/FMSS8jqDBZbq/1gCcpFA0kcd /tDJqRLCG8fQMEukVQZl4coQIg1Jwyj2UFbBv2b0= Received: by b221-2.in.mailobj.net [192.168.90.22] with ESMTP via ip-20.mailobj.net [213.182.54.20] Sun, 16 Feb 2025 15:08:22 +0100 (CET) X-EA-Auth: L21v7BsPLt/B3tjJcEUdUGLAJG69PzdzQdThhzY7xSJWSfRMje3K/l7D3N+uO8Rgvu+5hwnm58apMbzSzaiRf4OCsczpKwI7XCQG1Z2nVLk= From: Yarl Baudig To: guix-patches@gnu.org Subject: [PATCH] gnu: llvm-spirv-translator: Fix cross compilation Date: Sun, 16 Feb 2025 15:07:18 +0100 Message-ID: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=213.182.54.11; envelope-from=yarl-baudig@mailoo.org; helo=mailo.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit Cc: Yarl Baudig X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) * gnu/packages/vulkan.scm (llvm-spirv-translator): Fix cross-compilation. [configure-flags]: replace ungexp with ungexp-native when relevant. Fix headers path. Change-Id: If0fe4c42e98a67cbda27519815f556bb44713a60 --- gnu/packages/vulkan.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm index 241dff73ac..bfa32740e0 100644 --- a/gnu/packages/vulkan.scm +++ b/gnu/packages/vulkan.scm @@ -177,10 +177,9 @@ (define-public spirv-llvm-translator (target-x86-64?)) #:configure-flags #~(list (string-append "-DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR=" - #$(this-package-native-input "spirv-headers") - "/include/spirv") + #+(this-package-native-input "spirv-headers")) (string-append "-DLLVM_EXTERNAL_LIT=" - #$(this-package-native-input "python-lit") + #+(this-package-native-input "python-lit") "/bin/lit") (string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath=" #$output "/lib") base-commit: 1725d74c9f730f2628e2a02659b5ce925276d7ca -- 2.48.1 From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 26 17:41:40 2025 Received: (at 76337-done) by debbugs.gnu.org; 26 Mar 2025 21:41:40 +0000 Received: from localhost ([127.0.0.1]:44659 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1txYVI-0000vz-H4 for submit@debbugs.gnu.org; Wed, 26 Mar 2025 17:41:40 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:46144) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1txYVF-0000vW-QZ for 76337-done@debbugs.gnu.org; Wed, 26 Mar 2025 17:41:38 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 3FAC9B29; Wed, 26 Mar 2025 22:41:29 +0100 (CET) Authentication-Results: hera.aquilenet.fr; none X-Virus-Scanned: Debian amavis at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavis, port 10024) with ESMTP id x0v5cZgHxBbu; Wed, 26 Mar 2025 22:41:29 +0100 (CET) Received: from ribbon (91-160-117-201.subs.proxad.net [91.160.117.201]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 62B053B0; Wed, 26 Mar 2025 22:41:27 +0100 (CET) From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Yarl Baudig Subject: Re: [bug#76337] [PATCH] gnu: llvm-spirv-translator: Fix cross compilation In-Reply-To: (Yarl Baudig's message of "Sun, 16 Feb 2025 15:07:18 +0100") References: Date: Wed, 26 Mar 2025 22:41:26 +0100 Message-ID: <87ecyjjwqh.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 3FAC9B29 X-Spamd-Result: default: False [-6.10 / 15.00]; NEURAL_HAM(-3.00)[-1.000]; BAYES_HAM(-3.00)[99.99%]; MIME_GOOD(-0.10)[text/plain]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; RCPT_COUNT_TWO(0.00)[2]; ARC_NA(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_TLS_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Rspamd-Action: no action X-Spamd-Bar: ------ X-Rspamd-Server: hera X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 76337-done Cc: 76337-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Yarl Baudig skribis: > * gnu/packages/vulkan.scm (llvm-spirv-translator): Fix > cross-compilation. [configure-flags]: replace ungexp with ungexp-native when > relevant. Fix headers path. > > Change-Id: If0fe4c42e98a67cbda27519815f556bb44713a60 Applied, thanks! From unknown Wed Jun 18 23:05:54 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: Did not alter fixed versions and reopened. Date: Wed, 26 Mar 2025 21:45:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # Did not alter fixed versions and reopened. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 26 17:44:56 2025 Received: (at control) by debbugs.gnu.org; 26 Mar 2025 21:44:56 +0000 Received: from localhost ([127.0.0.1]:44666 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1txYYS-0001CF-0M for submit@debbugs.gnu.org; Wed, 26 Mar 2025 17:44:56 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:43342) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1txYYP-0001BF-Hc for control@debbugs.gnu.org; Wed, 26 Mar 2025 17:44:54 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id A1E9BB29 for ; Wed, 26 Mar 2025 22:44:47 +0100 (CET) Authentication-Results: hera.aquilenet.fr; none X-Virus-Scanned: Debian amavis at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavis, port 10024) with ESMTP id 49F7BN6P5fem for ; Wed, 26 Mar 2025 22:44:47 +0100 (CET) Received: from ribbon (91-160-117-201.subs.proxad.net [91.160.117.201]) by hera.aquilenet.fr (Postfix) with ESMTPSA id D874C3B0 for ; Wed, 26 Mar 2025 22:44:46 +0100 (CET) Date: Wed, 26 Mar 2025 22:44:46 +0100 Message-Id: <87a597jwkx.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #76337 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A1E9BB29 X-Spamd-Result: default: False [7.72 / 15.00]; SPAM_FLAG(5.00)[]; NEURAL_SPAM(3.00)[1.000]; BAYES_HAM(-0.89)[85.95%]; R_MIXED_CHARSET(0.71)[subject]; MIME_GOOD(-0.10)[text/plain]; FROM_EQ_ENVFROM(0.00)[]; ARC_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; MIME_TRACE(0.00)[0:+]; RCPT_COUNT_ONE(0.00)[1]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[control@debbugs.gnu.org]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_TLS_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Spam-Level: ******* X-Rspamd-Action: add header X-Spamd-Bar: +++++++ X-Rspamd-Server: hera X-Spam: Yes X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) reopen 76337 tags 76337 - fixed patch quit From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 26 17:45:52 2025 Received: (at 76337) by debbugs.gnu.org; 26 Mar 2025 21:45:52 +0000 Received: from localhost ([127.0.0.1]:44673 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1txYZM-0001Mp-Js for submit@debbugs.gnu.org; Wed, 26 Mar 2025 17:45:52 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:48832) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1txYZL-0001MQ-9n for 76337@debbugs.gnu.org; Wed, 26 Mar 2025 17:45:51 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 68AB2DBB; Wed, 26 Mar 2025 22:45:44 +0100 (CET) Authentication-Results: hera.aquilenet.fr; none X-Virus-Scanned: Debian amavis at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavis, port 10024) with ESMTP id ZmBWHkSUK2nd; Wed, 26 Mar 2025 22:45:43 +0100 (CET) Received: from ribbon (91-160-117-201.subs.proxad.net [91.160.117.201]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 10134A7E; Wed, 26 Mar 2025 22:45:41 +0100 (CET) From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Yarl Baudig Subject: Re: [bug#76337] [PATCH] gnu: llvm-spirv-translator: Fix cross compilation In-Reply-To: (Yarl Baudig's message of "Sun, 16 Feb 2025 15:07:18 +0100") References: Date: Wed, 26 Mar 2025 22:45:40 +0100 Message-ID: <875xjvjwjf.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 68AB2DBB X-Spamd-Result: default: False [-6.10 / 15.00]; NEURAL_HAM(-3.00)[-1.000]; BAYES_HAM(-3.00)[99.99%]; MIME_GOOD(-0.10)[text/plain]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; TO_DN_SOME(0.00)[]; ARC_NA(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; FREEMAIL_ENVRCPT(0.00)[protonmail.com]; RCPT_COUNT_THREE(0.00)[3]; FREEMAIL_CC(0.00)[debbugs.gnu.org,protonmail.com] X-Rspamd-Action: no action X-Spamd-Bar: ------ X-Rspamd-Server: hera X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 76337 Cc: John Kehayias , 76337@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Yarl Baudig skribis: > * gnu/packages/vulkan.scm (llvm-spirv-translator): Fix > cross-compilation. [configure-flags]: replace ungexp with ungexp-native = when > relevant. Fix headers path. > > Change-Id: If0fe4c42e98a67cbda27519815f556bb44713a60 Actually I spoke too fast: the patch LGTM but because of the large number of rebuilds, this should go on a branch. What about the next mesa branch, John? Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 28 11:43:27 2025 Received: (at 76337) by debbugs.gnu.org; 28 Mar 2025 15:43:27 +0000 Received: from localhost ([127.0.0.1]:55249 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tyBri-00019i-Jl for submit@debbugs.gnu.org; Fri, 28 Mar 2025 11:43:26 -0400 Received: from mail-4322.protonmail.ch ([185.70.43.22]:18523) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tyBrg-00019V-KR for 76337@debbugs.gnu.org; Fri, 28 Mar 2025 11:43:25 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1743176597; x=1743435797; bh=hVbCcdJCCMrcEnYoQcoT93BiB7ln014IumzXwz2abXc=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector:List-Unsubscribe:List-Unsubscribe-Post; b=Mus9rc3Vse9pJY9WOV+ZDfBp2VLjch7woiPzZZCr+k5JEglMnIfxSOit6EUyfgiOk nXZqIsuri5pHo49Wc6jO2uRc6702yxn+4O3qloemLaHNWk37riIogdBpLC3Y0H4D0q o9yZjncBBBLFJP0Y8wxKQoLlneg10lgM+sqaY4RnXvMTqCWwusBDEr5KbOBmq17RD7 b8i9vRIPQQHZHdS7vDikM/fYJm1Ygvml6r9h0UdhU+Oixx+L90KwYR4MbFZzDV4bSC RBJToTwYFHbzbntd2NC/muiIDtlbi7YM+jtQvOOaHLVdGepiCTmh0TLfAmXIMMTH5I lZk4gQECtM1Iw== Date: Fri, 28 Mar 2025 15:43:12 +0000 To: =?utf-8?Q?Ludovic_Court=C3=A8s?= From: John Kehayias Subject: Re: [bug#76337] [PATCH] gnu: llvm-spirv-translator: Fix cross compilation Message-ID: <87msd588ky.fsf@protonmail.com> In-Reply-To: <875xjvjwjf.fsf@gnu.org> References: <875xjvjwjf.fsf@gnu.org> Feedback-ID: 7805494:user:proton X-Pm-Message-ID: 1864dabe67dc609daffcf711e53f812553e67a0b MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76337 Cc: Yarl Baudig , 76337@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi! On Wed, Mar 26, 2025 at 10:45 PM, Ludovic Court=C3=A8s wrote: > Yarl Baudig skribis: > >> * gnu/packages/vulkan.scm (llvm-spirv-translator): Fix >> cross-compilation. [configure-flags]: replace ungexp with ungexp-native= when >> relevant. Fix headers path. >> >> Change-Id: If0fe4c42e98a67cbda27519815f556bb44713a60 > > Actually I spoke too fast: the patch LGTM but because of the large > number of rebuilds, this should go on a branch. What about the next > mesa branch, John? > > Ludo=E2=80=99. Sorry I missed the original submission in my search (I was looking for mesa-related ones) but I now have already live (and built) on mesa-updates albeit without this patch. The branch merge request is at . Though I'm not sure how long it will take to get to merging this branch if we're waiting for the 10(!!) branches ahead in the queue. I'm not sure if they are all large rebuilds or just for organizing teams work that can be merged more easily. I'll have to see how the coverage on non-x86 is, but the fact that the Berlin job has just about finished already might be good news? If we are waiting, I can update mesa once they put a new patch release out and include this patch at the same time unless it is more critical. Thoughts? Thanks! John From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 03 21:50:11 2025 Received: (at 76337-done) by debbugs.gnu.org; 4 Apr 2025 01:50:11 +0000 Received: from localhost ([127.0.0.1]:36411 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u0WC7-0006k9-5L for submit@debbugs.gnu.org; Thu, 03 Apr 2025 21:50:10 -0400 Received: from mail-4316.protonmail.ch ([185.70.43.16]:42041) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u0WC1-0006hy-Md for 76337-done@debbugs.gnu.org; Thu, 03 Apr 2025 21:50:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1743731394; x=1743990594; bh=DSln7eaS/pS3QB+7tIZHEuVsxSu5WysgpLoDbwp8tKk=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector:List-Unsubscribe:List-Unsubscribe-Post; b=xGCDAdiaI1BSQ6FKqAu3l2cBnUS2XnAofJT+JEtXY46UaG1sWtosTvBsxTBf0o1UX zP5umF6NWWWqWYEVy7+itXdRkYZmCs+MB7OIo4dlj1Oe0SbQeuRXzeOCCgQMwmu3Ga wbhphaVWoLgBaeot6yg0Xbhsagm+m26s6uaG1MaKBNNY5+Y3IJ7nTlayGJ4/miXHkv ksWvAV6kRGGR+j3RmZxCIXMLjlvNj8/hfKK6LQwJDrDuuzM8SWVmJL5GI/EsBVUjWA NkSTguFc9F5sq0HGV0LNHtB1CIQRl+h0D7AaYSGbaiaFieJ3Lskl95dKbkcydpf/rS AeK2bfCWZSwFA== Date: Fri, 04 Apr 2025 01:49:51 +0000 To: =?utf-8?Q?Ludovic_Court=C3=A8s?= From: John Kehayias Subject: Re: [bug#76337] [PATCH] gnu: llvm-spirv-translator: Fix cross compilation Message-ID: <87a58wd7b8.fsf@protonmail.com> In-Reply-To: <875xjvjwjf.fsf@gnu.org> References: <875xjvjwjf.fsf@gnu.org> Feedback-ID: 7805494:user:proton X-Pm-Message-ID: a0480c5342e2ae4bcd50d214d90e6c696b12d9e9 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76337-done Cc: 76337-done@debbugs.gnu.org, Yarl Baudig X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello, On Fri, Mar 28, 2025 at 11:43 AM, John Kehayias wrote: > Hi! > > On Wed, Mar 26, 2025 at 10:45 PM, Ludovic Court=C3=A8s wrote: > >> Yarl Baudig skribis: >> >>> * gnu/packages/vulkan.scm (llvm-spirv-translator): Fix >>> cross-compilation. [configure-flags]: replace ungexp with ungexp-nativ= e when >>> relevant. Fix headers path. >>> >>> Change-Id: If0fe4c42e98a67cbda27519815f556bb44713a60 >> >> Actually I spoke too fast: the patch LGTM but because of the large >> number of rebuilds, this should go on a branch. What about the next >> mesa branch, John? >> >> Ludo=E2=80=99. > > Sorry I missed the original submission in my search (I was looking for > mesa-related ones) but I now have > already live (and built) on mesa-updates albeit without this patch. The > branch merge request is at . > I've now applied this patch on mesa-updates as fd838007e57d9b18257aa73bc2180da439405d05 (though note that rebases will happen). Not sure when that will make it to master, but I'll go ahead and close this now, thanks! > Though I'm not sure how long it will take to get to merging this branch > if we're waiting for the 10(!!) branches ahead in the queue. I'm not > sure if they are all large rebuilds or just for organizing teams work > that can be merged more easily. > > I'll have to see how the coverage on non-x86 is, but the fact that the > Berlin job has just about finished already might be good news? If we are > waiting, I can update mesa once they put a new patch release out and > include this patch at the same time unless it is more critical. > > Thoughts? > > Thanks! > John From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 08 05:58:47 2025 Received: (at 76337-done) by debbugs.gnu.org; 8 Apr 2025 09:58:47 +0000 Received: from localhost ([127.0.0.1]:59161 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u25jD-0003R5-6r for submit@debbugs.gnu.org; Tue, 08 Apr 2025 05:58:47 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58096) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u25jA-0003QY-C6 for 76337-done@debbugs.gnu.org; Tue, 08 Apr 2025 05:58:45 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1u25j3-0002wp-IH; Tue, 08 Apr 2025 05:58:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=g7b0xUqNgbslEwxB52Xvspfr5AnFoMYi13DZITSIirc=; b=YmLSGX20aVlVr/4YeCNf Kq0KOH6yZjYyFMoxZnb9AOi9aLxqcbXPl5LE13rDWQSd0uF5aUlMaQjWriJXCTvOHVFDevtLQh9wP dRez4WWOvU2AFSWGQu/iL078BjaZotJy6W0jS+o2sHUnCUrAI0g8DPicUFH2uUhql7D+Y4FyQb1Z+ MqCMM8Woh59DXGos3tDvDHiydf+02fdcOUeFKwySfoD2eLgyu5Y411TpxKaD2l1cQuZzIOCmZvqxs 0j2IQuE8jMr7uciv/bSjyYHJruOVNq3kW+RuNhKCkOeHNi72BDbvG9YPPOHKt3VUTZNTwzf5oFyYd puq1vKcpTLBZ6w==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: John Kehayias Subject: Re: [bug#76337] [PATCH] gnu: llvm-spirv-translator: Fix cross compilation In-Reply-To: <87a58wd7b8.fsf@protonmail.com> (John Kehayias's message of "Fri, 04 Apr 2025 01:49:51 +0000") References: <875xjvjwjf.fsf@gnu.org> <87a58wd7b8.fsf@protonmail.com> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: Nonidi 19 Germinal an 233 de la =?utf-8?Q?R=C3=A9vol?= =?utf-8?Q?ution=2C?= jour du Radis X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Tue, 08 Apr 2025 11:58:34 +0200 Message-ID: <878qob6kl1.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 76337-done Cc: 76337-done@debbugs.gnu.org, Yarl Baudig X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) John Kehayias skribis: > I've now applied this patch on mesa-updates as > fd838007e57d9b18257aa73bc2180da439405d05 (though note that rebases will > happen). Not sure when that will make it to master, but I'll go ahead > and close this now, thanks! Thank you! From unknown Wed Jun 18 23:05:54 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 06 May 2025 11:24:13 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator