mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
b03521b98d
Add support for generating a dsymutil reproducer. The result is a folder containing all the object files for linking. When --gen-reproducer is passed, dsymutil uses a FileCollectorFileSystem which keeps track of all the files used by dsymutil. These files are copied into a temporary directory when dsymutil exists. When this path is passed to --use-reproducer, dsymutil uses a RedirectingFileSystem that will use the files from the reproducer directory instead of the actual paths. This means you don't need to mess with the OSO path prefix. Differential revision: https://reviews.llvm.org/D79398
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
RUN: dsymutil -help 2>&1 | FileCheck --check-prefix=CHECK --check-prefix=HELP %s
|
|
RUN: cat %S/../../../docs/CommandGuide/dsymutil.rst | FileCheck %s
|
|
|
|
HELP: OVERVIEW: manipulate archived DWARF debug symbol files.
|
|
HELP: USAGE: {{.*}}dsymutil{{[^ ]*}} [options] <input files>
|
|
HELP-NOT: -reverse-iterate
|
|
HELP: Dsymutil Options:
|
|
CHECK: -accelerator
|
|
CHECK: -arch <arch>
|
|
CHECK: -dump-debug-map
|
|
CHECK: -flat
|
|
CHECK: -gen-reproducer
|
|
CHECK: -help
|
|
CHECK: -minimize
|
|
CHECK: -no-odr
|
|
CHECK: -no-output
|
|
CHECK: -no-swiftmodule-timestamp
|
|
CHECK: -num-threads <threads>
|
|
CHECK: -object-prefix-map <prefix=remapped>
|
|
CHECK: -oso-prepend-path <path>
|
|
CHECK: -out <filename>
|
|
CHECK: {{-o <filename>}}
|
|
CHECK: -papertrail
|
|
CHECK: -remarks-output-format <format>
|
|
CHECK: -remarks-prepend-path <path>
|
|
CHECK: -statistics
|
|
CHECK: -symbol-map
|
|
CHECK: -symtab
|
|
CHECK: {{-S}}
|
|
CHECK: -toolchain
|
|
CHECK: -update
|
|
CHECK: -use-reproducer <path>
|
|
CHECK: -verbose
|
|
CHECK: -verify
|
|
CHECK: {{-y}}
|
|
HELP-NOT: -reverse-iterate
|
|
|
|
RUN: dsymutil --version 2>&1 | FileCheck --check-prefix=VERSION %s
|
|
VERSION: {{ version }}
|
|
|
|
RUN: not dsymutil 2>&1 | FileCheck --check-prefix=NOINPUT %s
|
|
NOINPUT: error: no input files specified
|
|
|
|
RUN: dsymutil -bogus -help 2>&1 | FileCheck --check-prefix=BOGUS %s
|
|
BOGUS: warning: ignoring unknown option: -bogus
|