snippetbashTip
lli — Directly execute programs from LLVM bitcode. More information: <https://www.llvm.org/docs/CommandGui
Viewed 0 times
programscommandllvmfromexecutedirectlyclilli
Problem
How to use the
lli command: Directly execute programs from LLVM bitcode. More information: <https://www.llvm.org/docs/CommandGuide/lli.html>.Solution
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}}Code Snippets
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}}Context
tldr-pages: common/lli
Revisions (0)
No revisions yet.