diff options
author | Andrew Patterson <andrewpatt7@gmail.com> | 2022-11-17 21:53:01 -0500 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-11-19 12:58:12 +0100 |
commit | cc08d374b21f1326c2d70d5af84b56c0714a0885 (patch) | |
tree | 1fb476ab5763e1daba5b6cba8c3a8f80ed2f7ff6 /gnu/local.mk | |
parent | 854bdb7ba9abd6392da823f723553df03077e9a7 (diff) | |
download | guix-cc08d374b21f1326c2d70d5af84b56c0714a0885.tar.gz |
gnu: sbcl: Fix build on aarch64.
sbcl 2.2.10 currently doesn't build on aarch64. Upstream has fixed the issue (https://bugs.launchpad.net/sbcl/+bug/1996942), but this patch is needed until the next release. * gnu/packages/patches/sbcl-fix-build-on-arm64-with-clisp-as-host.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/lisp.scm (sbcl)[source]: Use it. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu/local.mk')
-rw-r--r-- | gnu/local.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index f543a9350d..caf2fc69e3 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1832,6 +1832,7 @@ 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 \ |