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 {
102
102
self
103
103
}
104
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
+ 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
+
105
123
/// Specify the section to display.
106
124
pub fn section ( & mut self , section : & str ) -> & mut Self {
107
125
self . cmd . arg ( "--string-dump" ) ;
You can’t perform that action at this time.
0 commit comments