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

20 lines
421 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.

# 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}}`