maclina/load
Reference implementation FASL loader for Maclina.
System Information
Definition Index
-
MACLINA.LOAD
No documentation provided.-
EXTERNAL FUNCTION LOAD-BYTECODE
- FILESPEC
- &KEY
- ENVIRONMENT
- VERBOSE
- DEBUG
- IF-DOES-NOT-EXIST
- EXTERNAL-FORMAT
As CL:LOAD, but only operates on bytecode FASLs. Load FILESPEC as a bytecode FASL. If :ENVIRONMENT is provided, it must be a runtime environment. If not provided, an environment of NIL (meaning the host's) is used. The FASL is loaded into this environment.
-
EXTERNAL FUNCTION LOAD-BYTECODE-STREAM
- STREAM
- &KEY
- ENVIRONMENT
- VERBOSE
As CL:LOAD, but only operates on bytecode FASLs, and has a stream as input rather than a file. The stream must be an (unsigned-byte 8) stream. If :ENVIRONMENT is provided, it must be a runtime environment. The FASL is loaded into this environment.
-