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

20
pages.zh/common/lli.md Normal file
View File

@@ -0,0 +1,20 @@
# lli
> 直接执行来自LLVM位码的程序。
> 更多信息:<https://www.llvm.org/docs/CommandGuide/lli.html>。
- 执行一个位码或IR文件
`lli {{path/to/file.ll}}`
- 带命令行参数执行:
`lli {{path/to/file.ll}} {{argument1 argument2 ...}}`
- 启用所有优化:
`lli -O3 {{path/to/file.ll}}`
- 在链接之前加载动态库:
`lli --dlopen={{path/to/library.dll}} {{path/to/file.ll}}`