Update CI workflow & all dependencies

This commit is contained in:
2024-09-09 20:36:18 -06:00
parent 9dfdbb9301
commit 8b793b5616
6 changed files with 643 additions and 384 deletions

View File

@@ -308,7 +308,7 @@ fn fixup(args: FixupArgs) -> Result<()> {
let mut addr_to_sym: BTreeMap<SectionId, BTreeMap<u32, SymbolId>> = BTreeMap::new();
for symbol in in_file.symbols() {
// Skip section and file symbols, we wrote them above
if matches!(symbol.kind(), SymbolKind::Section | SymbolKind::File | SymbolKind::Null) {
if matches!(symbol.kind(), SymbolKind::Section | SymbolKind::File) {
symbol_ids.push(None);
continue;
}