From 944f53fb00794f4bc96700dd14df1e88b6cd5623 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Thu, 17 Nov 2022 22:29:26 +0000 Subject: [PATCH] Fix build on arm64 with clisp as host Make sure the offset constants are defined while compiling vm.lisp. --- src/compiler/arm64/vm.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/compiler/arm64/vm.lisp b/src/compiler/arm64/vm.lisp index ae6d7c7fa..2a151be58 100644 --- a/src/compiler/arm64/vm.lisp +++ b/src/compiler/arm64/vm.lisp @@ -23,7 +23,8 @@ (macrolet ((defreg (name offset) (let ((offset-sym (symbolicate name "-OFFSET"))) `(progn - (defconstant ,offset-sym ,offset) + (eval-when (:compile-toplevel :load-toplevel :execute) + (defconstant ,offset-sym ,offset)) (setf (svref *register-names* ,offset-sym) ,(symbol-name name))))) (defregset (name &rest regs) -- 2.30.2 out/'>aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-install.sh
AgeCommit message (Expand)Author
2021-11-07guix-install.sh: Undo some bugs introduced by shellcheck....* etc/guix-install.sh: Unquote all file names containing ~root. Tobias Geerinckx-Rice
2021-09-29guix-install.sh: Don't swallow wget errors....Using ‘-q’ suppresses *all* stderr output, including errors. * etc/guix-install.sh (chk_gpg_keyring, guix_get_bin_list, guix_get_bin): Substitute ‘--no-verbose’ for ‘-q’. Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com> Tobias Geerinckx-Rice