LinuxCommandLibrary

llvm-cat

concatenates LLVM bitcode files into a single bitcode file

TLDR

Concatenate bitcode files

$ llvm-cat [file1.bc] [file2.bc] -o [output.bc]
copy
Concatenate multiple files
$ llvm-cat [*.bc] -o [combined.bc]
copy

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.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community