System Grab Bag

View all TLDR pages from common (or from all pages)

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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.