In the command guide --prefix and --prefix-strip is used in the form --prefix=<prefix> however currently it is used in the form --prefix <prefix>. This change fixes these options to match the command guide.
Details
Details
Diff Detail
Diff Detail
Unit Tests
Unit Tests
Event Timeline
Comment Actions
Looking at the other options in llvm-objdump, --option=<value> seems to be the consistent format. For this reason I changed the command line option rather than the user guide, if people disagree I'm happy to change the command guide instead.
Comment Actions
Many utilities supporting double-dash long options (not only GNU's) generally use the GNU style getopt_long which supports both --foo value and --foo=value.
We can use lld/llvm-objcopy style tablegen Eq to support both Joined and Separate.