This repository contains the script for building SBCL on Android with Termux, as well as the prebuilt binary for ARM64.
Install zstd
before getting started, which is required by SB-CORE-COMPRESSION
since 2.2.6:
apt-get install zstd
Download and extract the prebuilt SBCL for Termux, which is available on the Release page:
curl -OL "https://github.com/bohonghuang/sbcl-termux-build/releases/download/2.3.3/sbcl-2.3.3-arm64-termux.tar.zst"
unzstd -c "sbcl-2.3.3-arm64-termux.tar.zst" | tar -xf -
cd "sbcl-2.3.3"
Now you can run SBCL with:
sh run-sbcl.sh
If it runs without problems, install SBCL with:
sh install.sh
- https://bugs.launchpad.net/sbcl/+bug/1956852 for building SBCL using ECL on Android with Termux