(self)
| 799 | return build_path / self.name / f"{self.name}.rel" |
| 800 | |
| 801 | def partial_output(self) -> Path: |
| 802 | if self.module_id == 0: |
| 803 | return build_path / f"{self.name}.elf" |
| 804 | else: |
| 805 | return build_path / self.name / f"{self.name}.plf" |
| 806 | |
| 807 | def write(self, n: ninja_syntax.Writer) -> None: |
| 808 | n.comment(f"Link {self.name}") |
no outgoing calls
no test coverage detected