- bookworm 1:2.49.20210628.gitde01f0f-3
- testing 1:2.49.20210628.gitde01f0f-3.1+b2
- unstable 1:2.49.20241117.git2640aef-2
- experimental 1:2.49.20241118.gitfaa3b6b-1
CLISP-LINK(1) | Platform: x86_64-pc-linux-gnu | CLISP-LINK(1) |
NAME¶
clisp-link - link a new external module to CLISP[1].
SYNOPSIS¶
clisp-link [create] [module] [file...]
clisp-link [add] [source] [destination] [module...]
clisp-link [run] [source] [module...]
clisp-link [install] [module...]
DESCRIPTION¶
This shell script operates on CLISP[1] module sets and linking sets:
installs new module sets for general use
OPTIONS¶
create
$ clisp-link create module file ...
creates a module set in module directory which refers (via symbolic links) to files file... The files are expected to be modules of their own.
add
$ clisp-link add source destination module ...
combines the linking set in directory source and the modules in directories module... to a new linking set, in the directory destination which is newly created.
run
$ clisp-link run source module ...
runs the linking set in directory source, with the modules in directories module... Unless CLISP[1] has been built with the configuration option --without-dynamic-modules, the loading will be performed using SYS::DYNLOAD-MODULES. Otherwise - this is much slower - a temporary linking set will be created and deleted afterwards.
install
The command
$ clisp-link install module ...
installs the modules in directories module... into CUSTOM:*LIB-DIRECTORY* or, if it is not writable to the user (e.g., if a system-wide CLISP[1] installation is used and the user does not have administrative privileges), into CUSTOM:*USER-LIB-DIRECTORY*.
Variable CUSTOM:*USER-LIB-DIRECTORY* is initially set to (MERGE-PATHNAMES[2] ".clisp/" (USER-HOMEDIR-PATHNAME[3])) if that directory exists, and can be reset in the RC file.
Note
Do not add CUSTOM:*USER-LIB-DIRECTORY* to CUSTOM:*LOAD-PATHS* or under any element thereof. Use REQUIRE instead of LOAD to load dynamic modules.
EXAMPLES¶
See Section 32.2.6, “Example”.
FILES¶
clisp-link needs a “link kit” directory containing:
clisp-link expects to find these files in a subdirectory linkkit/ of the installation directory (i.e., CUSTOM:*LIB-DIRECTORY*) which it acquires by running
$ `dirname $0`/clisp -b
This can be overridden by the environment variable[4] CLISP_LINKKIT.
SEE ALSO¶
AUTHORS¶
Bruno Haible <http://www.haible.de/bruno/>
Michael Stoll <http://www.mathe2.uni-bayreuth.de/stoll/>
Sam Steingold <http://sds.podval.org/>
Others
COPYRIGHT¶
Copyright © 1992-2024 Bruno Haible
Copyright © 1998-2018 Sam Steingold
NOTES¶
- 1.
- CLISP
- 2.
- MERGE-PATHNAMES
- 3.
- USER-HOMEDIR-PATHNAME
- 4.
- environment variable
Last modified: 2024-11-09 | CLISP 2.49.95+ |