llvm-extract-bundle-entry - Man Page
extract an offload bundle entry
Synopsis
llvm-extract-bundle-entry [options] URI
Description
llvm-extract-offload-entry is a tool thet takes a URI argument and generates a code object file by extracting an offload bundle entry specified by the URI given.
The URI syntax is defined as:
- -- code-block::bnf
<code_object_uri> ::== <file_uri> | <memory_uri> <file_uri> ::== "file://"<extract_file><range_specifier> <memory_uri> ::== "memory://"<process_id><range_specifier> <range_specifier> ::== [ "#" | "?" ]"offset="<number>"&size="<number> <extract_file> ::== URI_ENCODED_OS_FILE_PATH <process_id> ::== DECIMAL_NUMBER <number> ::== DECIMAL_NUMBER
The output is always written to a file, whose name is generated from the URI input given.
Options
The following options are either agnostic of the file format or apply to multiple file formats.
- --help, -h
Print a summary of command line options.
- -o <file>
Write output to <file>. Multiple input files cannot be used in combination with -o.
- --version, -V
Display the version of the llvm-extract-bundle-entry executable.
Exit Status
llvm-extract-bundle-entry exits with a non-zero exit code if there is an error. Otherwise, it exits with code 0.
Bugs
To report bugs, please visit <https://github.com/llvm/llvm-project/issues?q=state%3Aopen%20label%3Allvm-extract-bundle-entry>.
Author
Maintained by the LLVM Team (https://llvm.org/).
Copyright
2003-2026, LLVM Project
Referenced By
The man page llvm-extract-bundle-entry-23(1) is an alias of llvm-extract-bundle-entry(1).