We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79bd731 commit 2fd6558Copy full SHA for 2fd6558
objdiff-core/src/obj/read.rs
@@ -335,6 +335,10 @@ fn relocations_by_section(
335
};
336
symbol
337
}
338
+ RelocationTarget::Absolute => {
339
+ log::warn!("Ignoring absolute relocation @ {}:{:#x}", section.name, address);
340
+ continue;
341
+ }
342
_ => bail!("Unhandled relocation target: {:?}", reloc.target()),
343
344
let flags = reloc.flags(); // TODO validate reloc here?
0 commit comments