guix-commits
[Top][All Lists]
Advanced

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

07/07: gnu: smalltalk: Find glibc even when cross-compiling.


From: guix-commits
Subject: 07/07: gnu: smalltalk: Find glibc even when cross-compiling.
Date: Fri, 4 Jun 2021 07:45:51 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit f50a88c1fa2e07a668ee87402a5462267d1baf12
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Mon May 31 14:07:50 2021 +0200

    gnu: smalltalk: Find glibc even when cross-compiling.
    
    glibc is named "cross-libc" instead of "libc" when cross-compiling. 
Smalltalk
    still fails to cross-compile though.
    
    * gnu/packages/smalltalk.scm
      (smalltalk)[arguments]{phases}<#:fix-libc>: Also search for
      "cross-libc" instead of only "libc" in 'inputs'.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/smalltalk.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/smalltalk.scm b/gnu/packages/smalltalk.scm
index af4b764..26f7ab2 100644
--- a/gnu/packages/smalltalk.scm
+++ b/gnu/packages/smalltalk.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -103,7 +104,11 @@
              #t))
          (add-before 'configure 'fix-libc
            (lambda* (#:key inputs #:allow-other-keys)
-             (let ((libc (assoc-ref inputs "libc")))
+             (let ((libc (or (assoc-ref inputs "libc")
+                             ;; When cross-compiling, the input
+                             ;; is named "cross-libc" instead of
+                             ;; simply "libc".
+                             (assoc-ref inputs "cross-libc"))))
                (substitute* "libc.la.in"
                  (("@LIBC_SO_NAME@") "libc.so")
                  (("@LIBC_SO_DIR@")  (string-append libc "/lib"))))



reply via email to

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