summaryrefslogtreecommitdiff
path: root/guix/build-system/guile.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-01-11 11:31:39 +0100
committerLudovic Courtès <ludo@gnu.org>2022-01-11 20:34:59 +0100
commit6128c274786fc0c109c0c4ce257e5d8b01ac86c3 (patch)
tree08d0984752487f57e2ea1f02eb284cde0789d201 /guix/build-system/guile.scm
parentd064f922b59657fc0c24af5ee7f48102b21f9e1b (diff)
downloadguix-patches-6128c274786fc0c109c0c4ce257e5d8b01ac86c3.tar
guix-patches-6128c274786fc0c109c0c4ce257e5d8b01ac86c3.tar.gz
build-system: Pass #:make-dynamic-linker-cache? #f when cross-compiling.
Fixes <https://issues.guix.gnu.org/52898>. Reported by Maxime Devos <maximedevos@telenet.be>. This is a followup to 1209447ad3f471d12e9408dd478b3cfcd7b7a07e. * guix/build-system/cmake.scm (cmake-cross-build)[builder]: Pass #:make-dynamic-linker-cache? #f. * guix/build-system/go.scm (go-cross-build)[builder]: Ditto. * guix/build-system/guile.scm (guile-cross-build)[builder]: Ditto. * guix/build-system/qt.scm (qt-cross-build)[builder]: Ditto.
Diffstat (limited to 'guix/build-system/guile.scm')
-rw-r--r--guix/build-system/guile.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build-system/guile.scm b/guix/build-system/guile.scm
index f64f214675..36a88e181a 100644
--- a/guix/build-system/guile.scm
+++ b/guix/build-system/guile.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2018, 2019, 2021 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2018-2019, 2021-2022 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -162,6 +162,7 @@
#:native-search-paths '#$(map
search-path-specification->sexp
native-search-paths)
+ #:make-dynamic-linker-cache? #f ;cross-compiling
#:phases #$phases))))
(mlet %store-monad ((guile (package->derivation (or guile (default-guile))