GNU bug report logs -
#65041
[PATCH] gnu: clisp: Add threads support on x84_64-linux.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sat, 23 Sep 2023 09:15:02 +0000
with message-id <87y1gxdzc6.fsf <at> kitej>
and subject line Re: [bug#65041] [PATCH] gnu: clisp: Add threads support on x84_64-linux.
has caused the debbugs.gnu.org bug report #65041,
regarding [PATCH] gnu: clisp: Add threads support on x84_64-linux.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
65041: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=65041
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Guix's build version of CLISP, fails to load bordeaux-threads:
Error while trying to load definition for system bordeaux-threads
This implementation is unsupported.
This patch adds support for POSIX_THREADS on x86_64-linux
system.
* gnu/packages/lisp.scm (clisp)[arguments]: Add configuration options to
support threads on x86_64-linux system.
Reported and Co-Authored by Andrew Kravchuk <awkravchuk <at> gmail.com>
---
gnu/packages/lisp.scm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 2f4fe6476d..47caa8e389 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -17,7 +17,7 @@
;;; Copyright © 2019-2023 Guillaume Le Vaillant <glv <at> posteo.net>
;;; Copyright © 2020 Marius Bakke <mbakke <at> fastmail.com>
;;; Copyright © 2020 Zhu Zihao <all_but_last <at> 163.com>
-;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus <at> gmail.com>
+;;; Copyright © 2021, 2023 Sharlatan Hellseher <sharlatanus <at> gmail.com>
;;; Copyright © 2021 Paul A. Patience <paul <at> apatience.com>
;;; Copyright © 2021 Charles Jackson <charles.b.jackson <at> protonmail.com>
;;; Copyright © 2022 Joeke de Graaf <joeke <at> posteo.net>
@@ -25,6 +25,7 @@
;;; Copyright © 2022 ( <paren <at> disroot.org>
;;; Copyright © 2023 Zheng Junjie <873216071 <at> qq.com>
;;; Copyright © 2023 Yovan Naumovski <yovan <at> gorski.stream>
+;;; Copyright © 2023 Andrew Kravchuk <awkravchuk <at> gmail.com.
;;;
;;; This file is part of GNU Guix.
;;;
@@ -380,6 +381,12 @@ (define-public clisp
(%current-target-system)))
'("CFLAGS=-falign-functions=4")
'())
+ ,@(if (string-prefix? "x86_64-linux"
+ (or (%current-system)
+ (%current-target-system)))
+ '("--enable-portability"
+ "--with-threads=POSIX_THREADS")
+ '())
"--with-dynamic-ffi"
"--with-dynamic-modules"
"--with-ffcall"
base-commit: 782cf09b84bc72514e89d783460ea98bc353bf6a
--
2.40.1
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
Merged in master at 4f35ff1275e05be31f5d41464ccf147e9dbfd016.
Closing.
[signature.asc (application/pgp-signature, inline)]
This bug report was last modified 1 year and 301 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.