1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 13:33:43 +02:00

lli: add page (#7256)

This commit is contained in:
Benedek Szilvasy 2021-10-29 04:34:48 +02:00 committed by GitHub
parent 331cfea5fa
commit a014befa5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,20 @@
# 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}}`