Unless stated otherwise, the following commandline options are accepted by all tools:
Print version information and exit.
Print this help and exit.
Print help for THING and exit. This option can be specified multiple times.
Note
This option is only available in the Common Lisp implementation.
Stream to which information messages should be sent. Allowed values for STREAM-NAME: stdout, standard-output, stderr, error-output, none. Default info stream is: error-output
Note
This option is only available in the Common Lisp implementation.
Controls the amount of generated log output. Allowed values for LEVEL: off, trace, info, warn and error. Default log level is warn.
Note
This option is only available in the Common Lisp implementation.
Trace specified things. This option can be supplied multiple times to trace multiple things. Each occurrence takes an individual SPEC which has to have one of the following forms:
"PACKAGE"
Trace all functions in the package named PACKAGE.
Note
The double quotes and uppercase.
FUNCTION-NAME
Trace the function named FUNCTION-NAME.
Note
No quotes, actual case of the function name.
Note
This option is only available in the Common Lisp implementation.
Enable debugging. This does the following things:
Note
This option is only available in the Common Lisp implementation.
Start a swank listener. Swank will print the port it listens on. In addition, a file named ./swank-port.txt containing the port number is written.
Note
This option is only available in the Common Lisp implementation.
Evaluate SEXP as Lisp code. This option can be supplied multiple times. Code fragments are evaluated in the order in which they appear on the commandline.
Note
This option is only available in the Common Lisp implementation.
Load FILE. This option can be supplied multiple times. Files are loaded in the order in which they appear on the commandline.
Note
This option is only available in the Common Lisp implementation.
DIRECTORIES is a list of paths from which data definitions should be loaded. This option can be supplied multiple times.
Note
This option is only available in the Common Lisp implementation.
Load data definition from FILE-OR-GLOB-EXPRESSION. If a glob expression is specified, in addition to the canonical globbing syntax, expressions of the form:
SOMESTUFF/**/MORESTUFF
can be used to search directories recursively. If the file designated by FILE-OR-GLOB-EXPRESSION depend on additional data definition files (i.e. contain import statements), the list of directories supplied via the --idl-path option is consulted to find these files. This option can be supplied multiple times.
Note
This option is only available in the Common Lisp implementation.
In-process Transport
Spread Transport
- RSB_TRANSPORT_SPREAD_ENABLED¶
1: enable Spread transport in this process; 0: disabled Spread transport in this process.
- RSB_TRANSPORT_SPREAD_HOST¶
Name or IP-address of the machine running the Spread daemon.
- RSB_TRANSPORT_SPREAD_PORT¶
Port on which the Spread daemon listens.
TCP-socket-based Transport
- RSB_TRANSPORT_SOCKET_ENABLED¶
1: enable TCP-socket-based transport in this process; 0: disabled TCP-socket-based transport in this process.
- RSB_TRANSPORT_SOCKET_HOST¶
Name or IP-address of the machine running the RSB TCP-socket-based server component.
- RSB_TRANSPORT_SOCKET_PORT¶
Port on which the RSB TCP-socket-based server component listens.
- RSB_TRANSPORT_SOCKET_SERVER¶
1: this process should act the RSB TCP-socket-based server component; 0: this process should connect to the TCP-socket-based server; auto: this process should try to determine whether there already is a TCP-socket-based server for the configured host-port combination and act as a server or client accordingly.