Forrest logo
back to context overview

llc

List of commands for llc:

  • llc:tldr:1bca4 llc: Compile a bitcode or IR file to an assembly file with the same base name.
    $ llc ${filename-ll}
    try on your machine
    explain this command
  • llc:tldr:42d29 llc: Enable all optimizations.
    $ llc -O3 ${path-to-input-ll}
    try on your machine
    explain this command
  • llc:tldr:b45d3 llc: Emit fully relocatable, position independent code.
    $ llc -relocation-model=pic ${path-to-input-ll}
    try on your machine
    explain this command
  • llc:tldr:e4bef llc: Output assembly to a specific file.
    $ llc --output ${path-to-output-s}
    try on your machine
    explain this command
back to context overview