We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
llvm-readobj
1 parent ac47dba commit 6db3289Copy full SHA for 6db3289
src/tools/run-make-support/src/llvm.rs
@@ -102,6 +102,24 @@ impl LlvmReadobj {
102
self
103
}
104
105
+ /// Pass `--program-headers` to display program headers.
106
+ pub fn program_headers(&mut self) -> &mut Self {
107
+ self.cmd.arg("--program-headers");
108
+ self
109
+ }
110
+
111
+ /// Pass `--symbols` to display the symbol.
112
+ pub fn symbols(&mut self) -> &mut Self {
113
+ self.cmd.arg("--symbols");
114
115
116
117
+ /// Pass `--dynamic-table` to display the dynamic symbol table.
118
+ pub fn dynamic_table(&mut self) -> &mut Self {
119
+ self.cmd.arg("--dynamic-table");
120
121
122
123
/// Specify the section to display.
124
pub fn section(&mut self, section: &str) -> &mut Self {
125
self.cmd.arg("--string-dump");
0 commit comments