Skip to content

Commit 6db3289

Browse files
committed
Add more flags for llvm-readobj
1 parent ac47dba commit 6db3289

File tree

1 file changed

+18
-0
lines changed
  • src/tools/run-make-support/src

1 file changed

+18
-0
lines changed

src/tools/run-make-support/src/llvm.rs

+18
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,24 @@ impl LlvmReadobj {
102102
self
103103
}
104104

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+
self
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+
self
121+
}
122+
105123
/// Specify the section to display.
106124
pub fn section(&mut self, section: &str) -> &mut Self {
107125
self.cmd.arg("--string-dump");

0 commit comments

Comments
 (0)