Forrest logo
back to context overview

llvm-as

List of commands for llvm-as:

  • llvm-as:tldr:5a295 llvm-as: Read an IR file from `stdin` and assemble it.
    $ cat ${path-to-source-ll} | llvm-as -o ${path-to-out-bc}
    try on your machine
    explain this command
  • llvm-as:tldr:63172 llvm-as: Assemble an IR file.
    $ llvm-as -o ${path-to-out-bc} ${path-to-source-ll}
    try on your machine
    explain this command
  • llvm-as:tldr:ae7c8 llvm-as: Assemble an IR file and include a module hash in the produced Bitcode file.
    $ llvm-as --module-hash -o ${path-to-out-bc} ${path-to-source-ll}
    try on your machine
    explain this command
back to context overview