Support IDO .mdebug for line numbers (#264)

* Support IDO .mdebug for line numbers

Resolves #179

* Fix wasm build && cargo clippy --fix

* Resolve review comment
This commit is contained in:
2025-09-25 10:00:40 -06:00
committed by GitHub
parent 90e81fad7e
commit 572afa8551
5 changed files with 424 additions and 0 deletions

View File

@@ -654,6 +654,10 @@ fn parse_line_info(
log::warn!("Failed to parse COFF line info: {e}");
}
if let Err(e) = super::mdebug::parse_line_info_mdebug(obj_file, sections) {
log::warn!("Failed to parse MIPS mdebug line info: {e}");
}
Ok(())
}