|
NAMEocamlrun - The OCaml bytecode interpreterSYNOPSISocamlrun [ options ] filename argument ...DESCRIPTIONThe ocamlrun(1) command executes bytecode files produced by the linking phase of the ocamlc(1) command.The first non-option argument is taken to be the name of the file containing the executable bytecode. (That file is searched in the executable path as well as in the current directory.) The remaining arguments are passed to the OCaml program, in the string array Sys.argv. Element 0 of this array is the name of the bytecode executable file; elements 1 to n are the remaining arguments. In most cases, the bytecode executable files produced by the ocamlc(1) command are self-executable, and manage to launch the ocamlrun(1) command on themselves automatically. OPTIONSThe following command-line options are recognized by ocamlrun(1).
ENVIRONMENT VARIABLESThe following environment variable are also consulted:
SEE ALSOocamlc(1).The OCaml user's manual, chapter "Runtime system". Visit the GSP FreeBSD Man Page Interface. |