(base_dir: &std::path::Path, path: &str)
| 449 | .map_err(BuildError::Link)?; |
| 450 | |
| 451 | Ok(BuildArtifacts { |
| 452 | plan, |
| 453 | units, |
| 454 | linked, |
| 455 | }) |
| 456 | } |
| 457 | |
| 458 | // Program/extra objects and any object defining an entry symbol are roots. |
| 459 | fn prune_unreferenced_stdlib( |
| 460 | units: Vec<BuiltUnit>, |
| 461 | prunable: &std::collections::HashSet<String>, |