* [bug#68039] [PATCH rust-team] gnu: librsvg: Improve cross compiling.
@ 2023-12-26 10:38 Zheng Junjie
2023-12-26 11:45 ` bug#68039: " Efraim Flashner
0 siblings, 1 reply; 2+ messages in thread
From: Zheng Junjie @ 2023-12-26 10:38 UTC (permalink / raw)
To: 68039; +Cc: Liliana Marie Prikler, Maxim Cournoyer, Raghav Gururajan
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2076 bytes --]
* gnu/packages/gnome.scm (librsvg): Improve cross compiling.
[arguments]<#:phases>: Use platform-rust-target.
Change-Id: I0fd24334286602642b2650fef52c79ea4955c3e8
---
gnu/packages/gnome.scm | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index b0417b2df9..339c85489f 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -77,6 +77,7 @@
;;; Copyright © 2023 Juliana Sims <juli@incana.org>
;;; Copyright © 2023 Dominik Delgado Steuter <d@delgado.nrw>
;;; Copyright © 2023 Zhu Zihao <all_but_last@163.com>
+;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -238,6 +239,7 @@ (define-module (gnu packages gnome)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
+ #:use-module (guix platform)
#:use-module (guix utils)
#:use-module (guix gexp)
#:use-module (ice-9 match)
@@ -3593,12 +3595,12 @@ (define-public librsvg
;; In lieu of #:make-flags
(setenv "CC" #$(cc-for-target))
(setenv "PKG_CONFIG" #$(pkg-config-for-target))
- (when #$(%current-target-system)
- (setenv "RUST_TARGET"
- (string-replace
- #$(%current-target-system)
- "-unknown-linux-gnu"
- (string-index #$(%current-target-system) #\-))))
+ #$@(if (%current-target-system)
+ #~((setenv "RUST_TARGET"
+ #$(platform-rust-target
+ (lookup-platform-by-target
+ (%current-target-system)))))
+ #~())
;; Something about the build environment resists building
;; successfully with the '--locked' flag.
(substitute* '("Makefile.am" "Makefile.in")
base-commit: 2f9f39f44108884669e7201c8fbf7f7d39e65ff2
--
2.41.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#68039: [PATCH rust-team] gnu: librsvg: Improve cross compiling.
2023-12-26 10:38 [bug#68039] [PATCH rust-team] gnu: librsvg: Improve cross compiling Zheng Junjie
@ 2023-12-26 11:45 ` Efraim Flashner
0 siblings, 0 replies; 2+ messages in thread
From: Efraim Flashner @ 2023-12-26 11:45 UTC (permalink / raw)
To: Zheng Junjie
Cc: Raghav Gururajan, Liliana Marie Prikler, Maxim Cournoyer,
68039-done
[-- Attachment #1: Type: text/plain, Size: 373 bytes --]
Thanks. I've applied it to the rust-team branch.
gnome-team: Feel free to apply it to your branch too if you want. I
didn't make any changes to the patch.
--
Efraim Flashner <efraim@flashner.co.il> רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-12-26 12:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-26 10:38 [bug#68039] [PATCH rust-team] gnu: librsvg: Improve cross compiling Zheng Junjie
2023-12-26 11:45 ` bug#68039: " Efraim Flashner
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.