clisp
- Common Lisp language interpreter and compiler
clisp
[ -h
| --help
]
[ --version
]
[ --license
]
[ -B
lisplibdir ]
#ifdef UNIX
[ -K
linking-set ]
#endif
[ -M
memfile ]
[ -m
memsize ]
#ifndef NO_SP_MALLOC
[ -s
stacksize ]
#endif
#ifdef MULTIMAP_MEMORY_VIA_FILE
[ -t
tempdir ]
#endif
[ -L
language ]
[ -N
localedir ]
[ -E
domain encoding ]
[ -q
| --quiet
| --silent
]
[ -w
]
[ -I
]
[ -a
]
[ -p
packagename ]
[ -C
]
[ -norc
]
[ -i
initfile ... ]
[ -c
[ -l
] lispfile [ -o
outputfile ] ... ]
[ -x
expression ]
[ lispfile
[ argument ... ] ]
-c
,
the specified lisp files are compiled to a bytecode that can be executed
more efficiently.
-h
, --help
clisp
.
--version
clisp
version number, as given by the function
call (lisp-implementation-version)
.
--license
-B
lisplibdir
clisp
executable.
#endif
#ifdef UNIX
-K
linking-set
base
, full
. The default is base
.
#endif
-M
memfile
saveinitmem
function.
#ifdef UNIX
It may have been compressed using GNU gzip.
#endif
-m
memsize
clisp
tries to grab
on startup. The amount may be given as nnnnnnn (measured in bytes),
nnnn K
or nnnn KB
(measured in kilobytes) or
n M
or n MB
(measured in megabytes).
#ifdef WIDE
Default is 4 megabytes.
#else
Default is 2 megabytes.
#endif
#if (oint_addr_len+addr_shift==24)
The argument is constrained between 100 KB and 16 MB.
#elif (oint_addr_len+addr_shift==26)
The argument is constrained between 100 KB and 64 MB.
#elif (oint_addr_len+addr_shift==28)
The argument is constrained between 100 KB and 256 MB.
#else
The argument is constrained above 100 KB.
#endif
-- This version of clisp
#if defined(SPVW_MIXED) && defined(SPVW_BLOCKS)
#ifdef GENERATIONAL_GC
is not likely to actually use the entire memsize
since garbage collection will periodically reduce the amount of used memory.
It is therefore common to specify 10 MB even if only 2 MB are going to be used.
#else
eventually uses the entire memsize.
#endif
#else
allocates memory dynamically.
memsize is essentially ignored.
#endif
#ifndef NO_SP_MALLOC
-s
stacksize
clisp
allocates for itself. The syntax is the same as for memsize.
Default is one eighth of memsize.
The argument is constrained between 40 KB and 8 MB.
#endif #ifdef MULTIMAP_MEMORY_VIA_FILE
-t
tempdir
TMPDIR
.
#endif
-L
language
clisp
uses to communicate with the user. This may be
#ifndef GNU_GETTEXT
english
.
#endif
#ifdef GNU_GETTEXT
english
, deutsch
, francais
,
espanol
.
Other languages may be specified through the environment variable
LANG
,
provided the corresponding message catalog is installed.
#endif
-N
localedir
clisp
will search its message catalogs in
localedir/
language/LC_MESSAGES/clisp.mo
.
-E
domain encoding
LC_ALL
,
LC_CTYPE
, LANG
. domain can be
file
, affecting *default-file-encoding*
, or
pathname
, affecting *pathname-encoding*
, or
terminal
, affecting *terminal-encoding*
, or
foreign
, affecting *foreign-encoding*
, or
misc
, affecting *misc-encoding*
.
-q
, --quiet
, --silent
clisp
displays no banner at startup and no good-bye message when quitting.
-w
-I
clisp
interacts in a way that ILISP can deal with.
Currently the only effect of this is that unnecessary prompts are not
suppressed.
#ifdef GNU_READLINE
Furthermore, the GNU readline library treats Tab as a normal self-inserting
character.
#endif
-a
*package*
to
COMMON-LISP-USER
and the symbol macro *ansi*
to t
.
See impnotes.html,
section "Maximum ANSI CL compliance", for details.
-p
packagename
*package*
will
be set to the package named packagename. The default is the package
which was active when the image was saved,
normally USER
, or
COMMON-LISP-USER
if the option
-a
was specified.
-C
*load-compiling*
will be set to t
.
Code being load
ed will then be compiled on the fly. This results
in slower loading, but faster execution.
-norc
clisp
loads a user run control (RC) file on
startup (this happens after the -C
option is processed). The file loaded is
#if defined(PATHNAME_MSDOS) || defined(PATHNAME_OS2) || defined(PATHNAME_WIN32) || defined(PATHNAME_RISCOS)
_clisprc.lsp
or _clisprc.fas
in the home directory
(user-homedir-pathname)
,
#endif
#if defined(PATHNAME_AMIGAOS)
.clisprc.lsp
or .clisprc.fas
in the home directory
(user-homedir-pathname)
,
#endif
#if defined(PATHNAME_UNIX)
${HOME}/.clisprc.lsp
or ${HOME}/.clisprc.fas
,
#endif
whichever is newest. This option, -norc
, prevents loading of
the RC file.
-i
initfile ...
load
ed
at startup. These should be lisp files (source or compiled). Several
-i
options can be given; all the specified files will be loaded
in order.
-c
lispfile ...
load
ed instead of the sources to
gain efficiency.
-o
outputfile
-l
compile-file
for details.
-x
expressions
*args*
will be bound to a list of strings, representing the arguments.
#ifdef UNIX
The first line of lispfile may start with #!
,
thus permitting clisp
to be used as a script interpreter.
#endif
If lispfile is -
, the standard input is used instead of
a file.
This option must be the last one. No RC file
will be executed.
#ifdef EMUNIX
@
optionfile
clisp
.
#endif
WINDOW=
windowspec
clisp
will communicate with the console window or pipe specified by
windowspec.
ARGS=
arguments
clisp
.
Within arguments
the token *
may be used to denote the project's filename.
arguments
defaults to -i *
which means that the file will be
load
ed (see above).
ANSI Common Lisp standard X3.226-1994 http://www.x3.org/tc_home/j13sd4.htmavailable online as the
Common Lisp HyperSpec http://www.harlequin.com/education/books/HyperSpec/ ("CLHS" for short)which supersedes the earlier specifications
Guy L. Steele Jr.: Common Lisp - The Language. Digital Press. 2nd edition 1990, 1032 pages. http://www.cs.cmu.edu/afs/cs.cmu.edu/project/ai-repository/ai/html/cltl/cltl2.html ("CLtL2" for short)and
Guy L. Steele Jr.: Common Lisp - The Language. Digital Press. 1st edition 1984, 465 pages. ("CLtL1" for short)
help
(apropos
name)
(exit)
or (quit)
or (bye)
clisp
.
#if defined(UNIX) || defined(MSDOS) || defined(AMIGAOS) || defined(RISCOS)
#endif #ifdef GNU_READLINE
#endif
clisp
#endif
lisp.run
#endif
#if defined(MSDOS)
lisp.exe
#endif
#if defined(AMIGAOS)
lisp.run
#endif
#if defined(RISCOS)
lisp
#endif
lispinit.mem
config.lsp
*.lsp
*.fas
clisp
*.lib
clisp
compiler
*.c
clisp
CLISP_LANGUAGE
clisp
uses to communicate with the user. The value may be
english
, deutsch
, francais
and defaults to english
.
The -L
option can be used to override this environment variable.
#ifdef AMIGAOS
Language
clisp
uses to communicate with the user, unless it is already specified through
the environment variable CLISP_LANGUAGE
or the
-L
option. The value may be as above.
#endif #ifdef UNICODE
LC_CTYPE
language
or
language_country
or
language_country.charset
,
where language is a two-letter ISO 639 language code (lower case),
country is a two-letter ISO 3166 country code (upper case).
charset is an optional character set specification, and needs
normally not be given because the character set can be inferred from the
language and country.
#endif
LANG
clisp
uses to communicate with the user, unless it is already specified through
the environment variable CLISP_LANGUAGE
or the
-L
option.
#ifdef UNICODE
It also specifies the locale determining the character set in use, unless
already specified through the environment variable LC_CTYPE
.
#endif
The value may begin with a two-letter ISO 639 language code, for example
en
, de
, fr
.
#ifdef UNIX
HOME
and USER
user-homedir-pathname
. (Unix implementation only.)
#endif #if defined(UNIX) || defined(MSDOS)
SHELL
(Unix implementation only)
(shell)
.
#endif
#ifdef MSDOS
COMSPEC
(DOS, OS/2 implementations only)
(shell)
.
#endif
#endif #ifdef UNIX
TERM
#endif #ifdef EMUNIX_PORTABEL
TERM
clisp
relies on. If you have ANSI.SYS loaded, possible values are
ansi
, ansi-color-2
, ansi-color-3
and mono
.
TERMCAP
termcap.dat
.
#endif #ifdef MULTIMAP_MEMORY_VIA_FILE
TMPDIR
(Sparc implementation only)
#endif
#endif
See also
impnotes.html,
cmucl
(1),
#ifdef UNIX
xemacs
(1).
#else
emacs
(1).
#endif
Bugs
inspect
is not implemented.
#ifdef SPVW_MIXED_BLOCKS
apropos
and describe
is available.
#ifdef EMUNIX
clisp
in every situation.
execute
on batch files crashes the machine.
#endif
#ifdef UNIX_COHERENT
*keyboard-input*
does not recognize Ctrl-S and Ctrl-Q.
#endif
inspect
.
Last modified: 18 July 1999.