(path: &str, ext: &str)
| 507 | .linked |
| 508 | .to_elf_with_entry(outcome.link_layout.load_base, &outcome.entry) |
| 509 | } |
| 510 | |
| 511 | fn print_build_summary(outcome: &BuildOutcome) { |
| 512 | eprintln!( |
| 513 | "fsc: built `{}` for {:?} ({} units)", |
| 514 | outcome.manifest_name, |
| 515 | outcome.target, |
| 516 | outcome.artifacts.units.len() |
| 517 | ); |
| 518 | if let Some(dir) = &outcome.artifact_dir { |