From a1501772832bf453bfdd241d6ff76ef4e1800c62 Mon Sep 17 00:00:00 2001 Message-Id: From: Sharlatan Hellseher Date: Thu, 3 Aug 2023 16:44:16 +0100 Subject: [PATCH] gnu: clisp: Add threads support on x84_64-linux. 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 --- gnu/packages/lisp.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 2f4fe6476d..867a5df496 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2019-2023 Guillaume Le Vaillant ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020 Zhu Zihao -;;; Copyright © 2021 Sharlatan Hellseher +;;; Copyright © 2021, 2023 Sharlatan Hellseher ;;; Copyright © 2021 Paul A. Patience ;;; Copyright © 2021 Charles Jackson ;;; Copyright © 2022 Joeke de Graaf @@ -25,6 +25,7 @@ ;;; Copyright © 2022 ( ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2023 Yovan Naumovski +;;; Copyright © 2023 Andrew Kravchuk