llvm-cat
concatenates LLVM bitcode files into a single bitcode file
TLDR
Concatenate bitcode files
$ llvm-cat [file1.bc] [file2.bc] -o [output.bc]
Concatenate multiple files$ llvm-cat [*.bc] -o [combined.bc]
SYNOPSIS
llvm-cat [options] files...
DESCRIPTION
llvm-cat concatenates LLVM bitcode files into a single bitcode file. Combines multiple modules while preserving their individual contents. Used in build systems for collecting bitcode before linking.
PARAMETERS
-o file
Output file name.
