SBCL: Disable SB-THREAD for now (#11595)

This commit is contained in:
Alexandru Popa
2025-01-07 13:35:21 +02:00
committed by GitHub
parent eca81a1551
commit d219a7ba50

View File

@@ -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
}