mirror of
https://github.com/encounter/decomp-toolkit.git
synced 2025-12-18 01:15:23 +00:00
Handle more CompileUnit attributes in DWARF (#38)
* Handle more DWARF CompileUnit attributes Handle comp_dir and add two unknown attributes * Remove comment about unknown attributes
This commit is contained in:
@@ -199,6 +199,9 @@ where
|
||||
if let Some(producer) = unit.producer {
|
||||
writeln!(w, " Producer: {}", producer)?;
|
||||
}
|
||||
if let Some(comp_dir) = unit.comp_dir {
|
||||
writeln!(w, " Compile directory: {}", comp_dir)?;
|
||||
}
|
||||
if let Some(language) = unit.language {
|
||||
writeln!(w, " Language: {}", language)?;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user