From: Ludovic Courtès Date: Mon, 15 Jan 2018 14:43:53 +0000 (+0100) Subject: ui: Disable '%fresh-auto-compile' only for Guile 2.2.3. X-Git-Url: https://git.hcoop.net/jackhill/guix/guix.git/commitdiff_plain/92423868bc451600f8f3d93b638091d12b14b7aa ui: Disable '%fresh-auto-compile' only for Guile 2.2.3. Mitigates . Reported by Diego Nicola Barbato . * guix/ui.scm (load*): Unset '%fresh-auto-compile' only on Guile 2.2.3. --- diff --git a/guix/ui.scm b/guix/ui.scm index 895179744b..fb2380b68a 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -195,7 +195,16 @@ messages." (catch #t (lambda () ;; XXX: Force a recompilation to avoid ABI issues. - ;; (set! %fresh-auto-compile #t) + ;; + ;; In 2.2.3, the bogus answer to was to + ;; ignore all available .go, not just those from ~/.cache, which in turn + ;; meant that we had to rebuild *everything*. Since this is too costly, + ;; we have to turn auto '%fresh-auto-compile' with that version, at the + ;; risk of getting ABI breakage in the user's config file. See + ;; . + (unless (string=? (version) "2.2.3") + (set! %fresh-auto-compile #t)) + (set! %load-should-auto-compile #t) (save-module-excursion