(raw: &str)
| 414 | /// Unstripped build of the same engine, carrying the symbol names |
| 415 | #[arg(long = "unstripped", value_name = "PATH")] |
| 416 | unstripped_path: PathBuf, |
| 417 | /// Directory to write the symbol map into |
| 418 | #[arg(short = 'o', long = "out", value_name = "DIR")] |
| 419 | out_dir: PathBuf, |
| 420 | /// Also map branch targets, not just call targets |
| 421 | #[arg(long)] |
| 422 | include_branches: bool, |
| 423 | /// Maximum byte distance when falling back to the nearest symbol |
| 424 | #[arg(long, default_value_t = 8192, value_name = "BYTES")] |
| 425 | nearest_max_distance: u64, |
| 426 | /// Require executable-section layout to match between the two ELFs |
| 427 | #[arg(long)] |
| 428 | require_exec_match: bool, |
| 429 | /// Register the result in symbols/manifest.json for later auto-ingestion |
| 430 | #[arg(long = "register-local-cache")] |
| 431 | register_local_cache: bool, |
| 432 | /// Print the mapping summary as JSON on stdout |
| 433 | #[arg(long)] |
| 434 | json: bool, |
| 435 | } |
| 436 |
no outgoing calls
no test coverage detected