mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 17:22:08 +02:00
13 lines
323 B
Markdown
13 lines
323 B
Markdown
# ocamlopt
|
|
|
|
> The OCaml native code compiler.
|
|
> Produces native executables, e.g. ELF on Linux.
|
|
> More information: <https://ocaml.org>.
|
|
|
|
- Compile a source file:
|
|
|
|
`ocamlopt -o {{path/to/binary}} {{path/to/source_file.ml}}`
|
|
|
|
- Compile with debugging enabled:
|
|
|
|
`ocamlopt -g -o {{path/to/binary}} {{path/to/source_file.ml}}`
|