Implement & link ac_station

This commit is contained in:
Cuyler36
2024-11-29 08:43:18 -05:00
parent 68d9e2d8fb
commit a2a074e1f2
23 changed files with 1170 additions and 261 deletions
+3 -1
View File
@@ -710,7 +710,9 @@ def generate_build_ninja(
n.comment("Source files")
def map_path(path: Path) -> Path:
return path.parent / (path.name + ".MAP")
if path.suffix == '.plf' or path.suffix == '.elf':
return path.with_suffix('.map')
return path.parent / (path.name + ".map")
class LinkStep:
def __init__(self, config: Dict[str, Any]) -> None: