/usr/share/doc/sbcl/README.Debian is in sbcl 2:1.0.55.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | Steel Bank Common Lisp for Debian
---------------------------------
To execute an SBCL executables like "normal" programs on Debian
GNU/Linux, install the package binfmt-support and use a kernel that
has support for "miscellaneous binary formats". This is the default
for Debian Linux kernels.
Compile your program using:
(compile-file "file1.lisp")
(compile-file "file2.lisp")
"Link" it using cat, in the same order as you would load them:
cat file1.fasl file2.fasl > program
Make it executable:
chmod a+x program
And have fun:
./program [arguments ...]
-- René van Bevern <rvb@pro-linux.de>, Sun Aug 28 18:35:15 2005
|