Files
tldr/pages.zh/common/ocamlopt.md

13 lines
340 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ocamlopt
> OCaml本地代码编译器。
> 生成本地可执行文件例如在Linux上的ELF。
> 更多信息:<https://ocaml.org>。
- 编译源文件:
`ocamlopt -o {{路径/到/二进制文件}} {{路径/到/源文件.ml}}`
- 启用调试编译:
`ocamlopt -g -o {{路径/到/二进制文件}} {{路径/到/源文件.ml}}`