1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:02:08 +02:00
tldr/pages/common/lli.md
2023-05-30 20:37:28 +02:00

20 lines
442 B
Markdown

# lli
> Directly execute programs from LLVM bitcode.
> More information: <https://www.llvm.org/docs/CommandGuide/lli.html>.
- Execute a bitcode or IR file:
`lli {{path/to/file.ll}}`
- Execute with command-line arguments:
`lli {{path/to/file.ll}} {{argument1 argument2 ...}}`
- Enable all optimizations:
`lli -O3 {{path/to/file.ll}}`
- Load a dynamic library before linking:
`lli --dlopen={{path/to/library.dll}} {{path/to/file.ll}}`