guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/05: gnu: xcb-util-wm: Fix cross-compiling to riscv64.


From: guix-commits
Subject: 02/05: gnu: xcb-util-wm: Fix cross-compiling to riscv64.
Date: Sun, 4 Jun 2023 08:19:25 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 0ee6c9ea01d1f69b3b7b2c2d79d62b68ffd268ed
Author: Zheng Junjie <873216071@qq.com>
AuthorDate: Tue Feb 28 16:33:33 2023 +0800

    gnu: xcb-util-wm: Fix cross-compiling to riscv64.
    
    * gnu/packages/xorg.scm (xcb-util-wm)[arguments]: Add
    update-config-scripts phase when cross-compiling to riscv64.
    [native-inputs]: Add config when cross-compiling to riscv64.
    
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/xorg.scm | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 7632dac1c4..e1a7cf96f9 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -5638,11 +5638,29 @@ The XCB util-renderutil module provides the following 
library:
                "0gra7hfyxajic4mjd63cpqvd20si53j1q3rbdlkqkahfciwq3gr8"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:configure-flags '("--disable-static")))
+     `(#:configure-flags '("--disable-static")
+       ,@(if (and (target-riscv64?)
+                  (%current-target-system))
+           `(#:phases
+             (modify-phases %standard-phases
+               (add-after 'unpack 'update-config-scripts
+                 (lambda* (#:key inputs native-inputs #:allow-other-keys)
+                   ;; Replace outdated config.guess and config.sub.
+                   (for-each (lambda (file)
+                               (install-file
+                                (search-input-file
+                                 (or native-inputs inputs)
+                                 (string-append "/bin/" file)) "."))
+                             '("config.guess" "config.sub"))))))
+           '())))
     (propagated-inputs
      (list libxcb))
     (native-inputs
-     (list m4 pkg-config))
+     (append (if (and (target-riscv64?)
+                      (%current-target-system))
+               (list config)
+               '())
+             (list m4 pkg-config)))
     (home-page "https://cgit.freedesktop.org/xcb/util-wm/";)
     (synopsis "Client and window-manager helpers for ICCCM and EWMH")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]