mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
llvm-readobj: add some more aliases
Alias -d and -t from readelf in llvm-readobj which effectively replaces the tool. llvm-svn: 276075
This commit is contained in:
parent
f8c66349e0
commit
7da6ab5c08
@ -120,6 +120,8 @@ namespace opts {
|
||||
// -dynamic-table
|
||||
cl::opt<bool> DynamicTable("dynamic-table",
|
||||
cl::desc("Display the ELF .dynamic section table"));
|
||||
cl::alias DynamicTableShort("d", cl::desc("Alias for --dynamic-table"),
|
||||
cl::aliasopt(DynamicTable));
|
||||
|
||||
// -needed-libs
|
||||
cl::opt<bool> NeededLibraries("needed-libs",
|
||||
@ -128,6 +130,8 @@ namespace opts {
|
||||
// -program-headers
|
||||
cl::opt<bool> ProgramHeaders("program-headers",
|
||||
cl::desc("Display ELF program headers"));
|
||||
cl::alias ProgramHeadersShort("l", cl::desc("Alias for --program-headers"),
|
||||
cl::aliasopt(ProgramHeaders));
|
||||
|
||||
// -hash-table
|
||||
cl::opt<bool> HashTable("hash-table",
|
||||
|
Loading…
x
Reference in New Issue
Block a user