Require at least one input file (for commands that accept one or more).
(args: &Args)
| 501 | other => CliError::Assemble(other.to_string()), |
| 502 | } |
| 503 | } |
| 504 | |
| 505 | fn linked_elf_bytes(outcome: &BuildOutcome) -> Vec<u8> { |
| 506 | outcome |
| 507 | .artifacts |
| 508 | .linked |
| 509 | .to_elf_with_entry(outcome.link_layout.load_base, &outcome.entry) |
| 510 | } |
no test coverage detected