LinuxCommandLibrary

llvm-cat

Concatenate LLVM Bitcode (`.bc`) files.

TLDR

Concatenate Bitcode files

$ llvm-cat [path/to/file1.bc] [path/to/file2.bc] -o [path/to/out.bc]
copy

Help

OVERVIEW: Module concatenation 
USAGE: llvm-cat [options]  

OPTIONS:

Generic Options:

  --help        - Display available options (--help-hidden for more) 
  --help-list   - Display list of available options (--help-list-hidden for more) 
  --version     - Display the version of this program 

llvm-cat Options:

  -b            - Whether to perform binary concatenation 
  -o  - Output filename 

Copied to clipboard