added logging to builder trait and implemented for compiler and

assembler crates.
This commit is contained in:
2026-02-23 09:04:30 +00:00
parent a1d7b54479
commit 7ab1ac8842
11 changed files with 137 additions and 60 deletions
-8
View File
@@ -31,14 +31,6 @@ pub fn build_project(cwd: &Path) -> Result<(), BuildError> {
)));
}
// check is redundant as we're already checking for main files.
// if !has_dsc && !has_dsa {
// return Err(io::Error::new(
// io::ErrorKind::NotFound,
// "No .dsc or .dsa source found in src directory.",
// ));
// }
// detect src.
let (has_dsa, has_dsc) = detect_source_language(&src_dir);