The effective entry-point symbol given the current configuration.
(&self)
| 273 | |
| 274 | pub fn target_mode(&self) -> TargetMode { |
| 275 | self.target_mode |
| 276 | } |
| 277 | |
| 278 | pub fn set_target_mode(&mut self, mode: TargetMode) { |
| 279 | self.target_mode = mode; |
| 280 | } |
| 281 | |
| 282 | pub fn set_entry_point(&mut self, entry: Option<String>) { |
| 283 | self.entry_point = entry; |
| 284 | } |
| 285 | |
| 286 | pub fn set_link_layout(&mut self, layout: Option<LinkLayout>) { |
| 287 | self.link_layout = layout; |
| 288 | } |
no outgoing calls
no test coverage detected