compile: Work around non-thread-safe module autoloading.
authorLudovic Courtès <ludo@gnu.org>
Mon, 18 Jun 2018 13:16:40 +0000 (15:16 +0200)
committerLudovic Courtès <ludo@gnu.org>
Mon, 18 Jun 2018 21:19:51 +0000 (23:19 +0200)
* guix/build/compile.scm <top level>: Set 'try-module-autoload' when
running on Guile < 2.2.4.

guix/build/compile.scm

index 7b6e311..5a13635 100644 (file)
@@ -196,6 +196,20 @@ files are for HOST, a GNU triplet such as \"x86_64-linux-gnu\"."
       (unless (zero? total)
         (report-compilation #f total total)))))
 
+(eval-when (eval load)
+  (when (and (string=? "2" (major-version))
+             (or (string=? "0" (minor-version))
+                 (and (string=? (minor-version) "2")
+                      (< (string->number (micro-version)) 4))))
+    ;; Work around <https://bugs.gnu.org/31878> on Guile < 2.2.4.
+    ;; Serialize 'try-module-autoload' calls.
+    (set! (@ (guile) try-module-autoload)
+      (let ((mutex (make-mutex 'recursive))
+            (real  (@ (guile) try-module-autoload)))
+        (lambda* (module #:optional version)
+          (with-mutex mutex
+            (real module version)))))))
+
 ;;; Local Variables:
 ;;; eval: (put 'with-augmented-search-path 'scheme-indent-function 2)
 ;;; eval: (put 'with-target 'scheme-indent-function 1)