X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=run-sbcl.sh;fp=run-sbcl.sh;h=1fa7146ba05a6ecf493a9a3dd894b41628f68860;hb=e9d20dbcc57faf5be8ebccf95b4a8da680589990;hp=0000000000000000000000000000000000000000;hpb=c3c5e3bac6e4ca8e9d1c6960590d88e16254cfea;p=sbcl.git diff --git a/run-sbcl.sh b/run-sbcl.sh new file mode 100644 index 0000000..1fa7146 --- /dev/null +++ b/run-sbcl.sh @@ -0,0 +1,43 @@ +# A simple shell-script to run the freshly build SBCL without +# installing it. Expects to be run from the top of the SBCL source +# tree. + +# This software is part of the SBCL system. See the README file for +# more information. +# +# This software is derived from the CMU CL system, which was +# written at Carnegie Mellon University and released into the +# public domain. The software is in the public domain and is +# provided with absolutely no warranty. See the COPYING and CREDITS +# files for more information. + +set -e + +if [ "$1" = "--help" ]; then + echo "usage: run-sbcl.sh sbcl-options*" + echo + echo "Runs SBCL from the build directory or binary tarball without need for" + echo "installation. Except for --help and --core, accepts all the same" + echo "command-line options as SBCL does." + echo + echo "Expects the current directory to be the topmost directory of the SBCL" + echo "source tree or binary tarball." + echo + exit 1 +fi + +if [ -f sbcl-pwd.sh -a -x src/runtime/sbcl -a -f output/sbcl.core ]; then + . sbcl-pwd.sh + sbcl_pwd + echo "(running SBCL from: $SBCL_PWD)" + SBCL_HOME=$SBCL_PWD/contrib src/runtime/sbcl --core output/sbcl.core $@ +elif [ -f run-sbcl.sh -a -f version.lisp-expr ]; then + echo "No built SBCL here ($(pwd)): run 'sh make.sh' first!" + exit 1 +else + echo "No SBCL here ($(pwd))!" + echo + echo "run-sbcl.sh needs to be run from the top of the SBCL source tree or" + echo "binary tarball." + exit 1 +fi