add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,17 @@
# ocamlfind
> OCaml 的 findlib 包管理器。
> 简化了可执行文件与外部库的链接。
> 更多信息:<https://projects.camlcity.org/projects/findlib.html>。
- 将源文件编译为本地二进制文件并与包链接:
`ocamlfind ocamlopt -package {{package1}},{{package2}} -linkpkg -o {{path/to/executable}} {{path/to/source.ml}}`
- 将源文件编译为字节码二进制文件并与包链接:
`ocamlfind ocamlc -package {{package1}},{{package2}} -linkpkg -o {{path/to/executable}} {{path/to/source.ml}}`
- 为不同平台交叉编译:
`ocamlfind -toolchain {{cross-toolchain}} ocamlopt -o {{path/to/executable}} {{path/to/source.ml}}`