for the advantage outlined by D83639 ([OptTable] Support grouped short options)
Some behavior changes:
* -i={0,false} is removed. Use --no-inlines instead.
* --demangle={0,false} is removed. Use --no-demangle instead
* -untag-addresses={0,false} is removed. Use --no-untag-addresses instead
Added a higher level API OptTable::parseArgs which handles optional
initial options populated from an environment variable, expands response
files recursively, and parses options.
Reviewed By: jhenderson
Differential Revision: https://reviews.llvm.org/D83530
13 lines
511 B
Plaintext
13 lines
511 B
Plaintext
RUN: llvm-symbolizer -h | FileCheck %s --check-prefix=SYMBOLIZER
|
|
RUN: llvm-symbolizer --help | FileCheck %s --check-prefix=SYMBOLIZER
|
|
RUN: llvm-addr2line -h | FileCheck %s --check-prefix=ADDR2LINE
|
|
RUN: llvm-addr2line --help | FileCheck %s --check-prefix=ADDR2LINE
|
|
|
|
SYMBOLIZER: OVERVIEW: llvm-symbolizer
|
|
SYMBOLIZER: USAGE: llvm-symbolizer{{(.exe)?}} [options] addresses...
|
|
SYMBOLIZER: @FILE
|
|
|
|
ADDR2LINE: OVERVIEW: llvm-addr2line
|
|
ADDR2LINE: USAGE: llvm-addr2line{{(.exe)?}} [options] addresses...
|
|
ADDR2LINE: @FILE
|