Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(debuginfo): Add an Object type for portable pdb #696

Merged
merged 10 commits into from
Sep 30, 2022
Prev Previous commit
Next Next commit
fix symbolic-cfi
  • Loading branch information
loewenheim committed Sep 29, 2022
commit 0d6ef04b8274b441d4a3bd0d6836b4d8d1c54864
1 change: 1 addition & 0 deletions symbolic-cfi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ impl<W: Write> AsciiCfiWriter<W> {
Object::Pe(o) => self.process_pe(o),
Object::Wasm(o) => self.process_dwarf(o, false),
Object::SourceBundle(_) => Ok(()),
Object::PortablePdb(_) => Ok(()),
}
}

Expand Down