-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

llc


> Compiles LLVM Intermediate Representation or bitcode to target-specific assembly language.

More information.


Compile a bitcode or IR file to an assembly file with the same base name:

llc {path/to/file.ll}

Enable all optimizations:

llc -O3 {path/to/input.ll}

Output assembly to a specific file:

llc --output {path/to/output.s}

Emit fully relocateable, position independent code:

llc -relocation-model=pic {path/to/input.ll}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 00:43:41 2024