File: README.debian

package info (click to toggle)
cmucl 21d-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 45,328 kB
  • sloc: lisp: 378,758; ansic: 30,673; asm: 2,977; sh: 1,417; makefile: 357; csh: 31
file content (38 lines) | stat: -rw-r--r-- 966 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
The Debian Package cmucl
----------------------------

To use CLX, please do "(require :clx)".

This is the core of CMUCL. If you want to recompile CMUCL, get the debian
source tar.gz, install it somewhere, type "make". If you want you can use CVS
to automatically update the source to the latest available version.

This should be all.

Peter Van Eynde <pvaneynd@debian.org>



Executing FASLs natively
------------------------

To execute an CMUCL executable 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.sse2f file2.sse2f > program

Make it executable:
	chmod a+x program

And have fun:
	./program [arguments ...]

René van Bevern <rvb@pro-linux.de>