From d219a7ba507b46f29a9270a50b6b339a01a7da9a Mon Sep 17 00:00:00 2001 From: Alexandru Popa <48083723+al-popa@users.noreply.github.com> Date: Tue, 7 Jan 2025 13:35:21 +0200 Subject: [PATCH] SBCL: Disable SB-THREAD for now (#11595) --- dev-lisp/sbcl/sbcl-2.5.0.recipe | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/dev-lisp/sbcl/sbcl-2.5.0.recipe b/dev-lisp/sbcl/sbcl-2.5.0.recipe index 21e489b54..36a0debed 100644 --- a/dev-lisp/sbcl/sbcl-2.5.0.recipe +++ b/dev-lisp/sbcl/sbcl-2.5.0.recipe @@ -7,7 +7,7 @@ profiler, a code coverage tool, and many other extensions." HOMEPAGE="https://sbcl.org" COPYRIGHT="2002 Gerd Moellmann" LICENSE="BSD (2-clause)" -REVISION="1" +REVISION="2" portVersion="2.5.0" SOURCE_URI="https://github.com/sbcl/sbcl/archive/refs/tags/sbcl-$portVersion.zip" CHECKSUM_SHA256="15fc66e96683ae76ebfbb2e8b7d2d9fb443358ada2813fba860e65f4859346d6" @@ -41,8 +41,8 @@ BUILD_PREREQUIRES=" BUILD() { - chmod a+x *.sh - sh make.sh --xc-host='clisp -norc' --with-sb-core-compression --with-sb-simd-pack --with-sb-thread + chmod -R a+x *.sh + sh make.sh --xc-host='clisp -norc' --with-sb-core-compression --with-sb-simd-pack --without-sb-thread } INSTALL() @@ -52,9 +52,8 @@ INSTALL() INSTALL_ROOT=$prefix MAN_DIR=$manDir DOC_DIR=$docDir INFO_DIR=$infoDir sh install.sh } -# Fails at this stage -#TEST() -#{ -# cd tests -# ./run-tests.sh -#} +TEST() +{ + cd tests + ./run-tests.sh +}