CLISP
-
ANSI Common Lisp compiler, debugger and interpreter.
clisp
[ -h
|
--help
]
[ --version
]
[ --license
]
[ -B
lisplibdir ]
[ -K
linking-set ]
[ -M
memfile ]
[ -m
memsize ]
[ -L
language ]
[ -N
localedir ]
[ -E
domain
encoding ]
[ -q
|
--quiet
|
--silent
]
[ -interactive-debug
]
[ -w
]
[ -I
]
[ -ansi
]
[ -traditional
]
[ -p
packagename ]
[ -C
]
[ -norc
]
[ -i
initfile ... ]
[ -c
[ -l
]
lispfile
[ -o
outputfile ] ... ]
[ -x
expression ]
[ lispfile
[ argument ... ] ]
Invokes the Common Lisp interpreter and compiler.
Invoked without arguments, executes the read-eval-print loop, in which
expressions are in turn read from standard input, evaluated by the lisp
interpreter, and their results output to standard output.
Invoked with -c
, compiles
the specified lisp files 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
lisplibdirclisp
executable.
Directory lisplibdir can be changed dynamically using the
symbol-macro *lib-directory*
.
-K
linking-setbase
,
full
. The default is base
.
-M
memfilesaveinitmem
function.
It may have been compressed using GNU
gzip.
-m
memsizeclisp
tries to grab on startup.
The amount may be given as
K
or
nnnn KB
(measured in kilobytes) orM
or
n MB
(measured in megabytes).clisp
eventually uses the entire memsize.
-L
languageclisp
uses to communicate with the user.
This may be
english
.
The language may be changed dynamically using the symbol macro
*current-language*
,
-N
localedirclisp
will search its message catalogs in
localedir/
language/LC_MESSAGES/clisp.mo
.
This directory may be changed dynamically using the symbol macro
*current-language*
,
-E
domain
encodingLC_ALL
,
LC_CTYPE
, LANG
. domain can be
file
,*default-file-encoding*
, orpathname
,*pathname-encoding*
, orterminal
,*terminal-encoding*
, orforeign
,*foreign-encoding*
, ormisc
,*misc-encoding*
.-q
,
--quiet
,
--silent
clisp
displays no banner at startup and no
good-bye message when quitting.-interactive-debug
-c
,
-x
, and
lispfile
and allow interactive handling of ASSERT
and friends.-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.
Furthermore, the GNU readline library treats
Tab as a normal self-inserting character,
so you should always use this option when you invoke CLISP from Emacs.
-ansi
clisp
has been traditionally different.
It sets the symbol macro *ansi*
to t
.
See "Maximum ANSI CL compliance",
for details.-traditional
-ansi
in the saved image.-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
.-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
${HOME}/.clisprc.lisp
or ${HOME}/.clisprc.fas
,
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.
The first line of lispfile may start with #!
,
thus permitting clisp
to be used as a script interpreter.
If lispfile is -
,
the standard input is used instead of a file.
If lispfile is an empty string ""
,
the rest of the arguments is still available in *args*
,
for parsing by the init-function
of the current image.
This option must be the last one.
No RC file will be executed.The language implemented mostly conforms to
ANSI Common Lisp standard X3.226-1994
available online as the
Common Lisp HyperSpec ("CLHS" for short)
which supersedes the earlier specifications
Guy L. Steele Jr.: Common Lisp - The Language. Digital Press. 2nd edition 1990, 1032 pages. ("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
.#'
), the completion is limited to the symbols that
name functions.#P
), the completion is done across file names,
bash-style.clisp
lisp.run
lispinit.mem
config.lisp
*.lisp
*.fas
clisp
*.lib
clisp
compiler*.c
clisp
(for the FFI)CLISP_LANGUAGE
clisp
uses to communicate with the user.
The value may be english
, german
,
french
, spanish
, dutch
,
russian
, and defaults to english
.
The -L
option can be used to
override this environment variable.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.LANG
clisp
uses to communicate with the user, unless it is already specified
through the environment variable CLISP_LANGUAGE
or the
-L
option.
It also specifies the locale determining the character set in use, unless
already specified through the environment variable LC_CTYPE
.
The value may begin with a two-letter ISO 639 language code, for example
en
, de
, fr
.HOME
and USER
(Unix implementation only)user-homedir-pathname
SHELL
(Unix implementation only)(shell)
.TERM
impnotes.html,
cmucl
(1),
emacs
(1),
xemacs
(1).
When you encounter a bug in clisp
, please report it to the
CLISP
mailing list or the
SourceForge bug tracker.
When submitting a bug report, please specify the following information:
"uname -a"
on a Unix system)?
Compiler version? LIBC version (on Linux)?clisp
? (What command, options &c.)
Please do a clean build (remove your build directory and build
clisp
with "./configure --build build"
or at
least do a "make distclean"
before "make"
).
If you are reporting a crash (segmentation fault, bus error, core
dump etc), please do
"./configure --with-debug --build build-g"
and report the backtrace."clisp --version"
?Known bugs, some of which may be platform-dependent, include
apropos
and describe
is available.Bruno Haible and Michael Stoll.
See COPYRIGHT for the list of other contributors.
![]() |