guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Remove unused patch.


From: guix-commits
Subject: 01/03: gnu: Remove unused patch.
Date: Wed, 30 Nov 2022 08:23:47 -0500 (EST)

glv pushed a commit to branch master
in repository guix.

commit 5a6d0b5193d4ff7a3392ff287c149aa3e8beeb10
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Wed Nov 30 13:17:36 2022 +0100

    gnu: Remove unused patch.
    
    This a followup to 9b714ec75ee74d9f5464a8a08144f27eae817cd9.
    
    * gnu/packages/patches/sbcl-fix-build-on-arm64-with-clisp-as-host.patch:
      Delete file.
    * gnu/local.mk (dist_patch_DATA): Remove it.
---
 gnu/local.mk                                       |  1 -
 ...bcl-fix-build-on-arm64-with-clisp-as-host.patch | 27 ----------------------
 2 files changed, 28 deletions(-)

diff --git a/gnu/local.mk b/gnu/local.mk
index 9443dd617a..379e600b06 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1839,7 +1839,6 @@ dist_patch_DATA =                                         
\
   %D%/packages/patches/sbcl-aserve-fix-rfe12668.patch  \
   %D%/packages/patches/sbcl-burgled-batteries3-fix-signals.patch       \
   %D%/packages/patches/sbcl-clml-fix-types.patch               \
-  %D%/packages/patches/sbcl-fix-build-on-arm64-with-clisp-as-host.patch        
\
   %D%/packages/patches/sbcl-png-fix-sbcl-compatibility.patch   \
   %D%/packages/patches/scalapack-gcc-10-compilation.patch      \
   %D%/packages/patches/scheme48-tests.patch                    \
diff --git 
a/gnu/packages/patches/sbcl-fix-build-on-arm64-with-clisp-as-host.patch 
b/gnu/packages/patches/sbcl-fix-build-on-arm64-with-clisp-as-host.patch
deleted file mode 100644
index 4fe3ed16db..0000000000
--- a/gnu/packages/patches/sbcl-fix-build-on-arm64-with-clisp-as-host.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 944f53fb00794f4bc96700dd14df1e88b6cd5623 Mon Sep 17 00:00:00 2001
-From: Christophe Rhodes <csr21@cantab.net>
-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
-



reply via email to

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