File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
src/tools/run-make-support/src Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff 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" ) ;
You can’t perform that action at this time.
0 commit comments