Low Level Virtual Machine


NAME

gccld

SYNOPSIS

gccld [options] < filename>

DESCRIPTION

The gccld utility takes a set of LLVM bytecode files GCC and links them together into a single LLVM bytecode file. It will link in any LLVM bytecode libraries that are necessary to make a single LLVM "bytecode executable."

The gccld utility is primarily used by the GCC front end, and as such, attempts to mimic the interface provided by the default system linker so that it can act as a "drop-in" replacement.

OPTIONS

EXIT STATUS

If gccld succeeds, it will exit with 0. Otherwise, if an error occurs, it will exit with a non-zero value.

SEE ALSO

llvm-dis
LLVM Team