fix: missing implementation for IMAGE_REL_ARM64_ADDR64

This commit is contained in:
Meow
2026-07-22 01:01:17 +02:00
committed by Ryan Kurtz
parent 2bdc34c25a
commit 3101600853

View File

@@ -187,6 +187,11 @@ public class AARCH64_CoffRelocationHandler implements CoffRelocationHandler {
mem.setInt(address, bytesToAdjust); mem.setInt(address, bytesToAdjust);
break; break;
case IMAGE_REL_ARM64_ADDR64:
mem.setLong(address, symbolAddr.getOffset());
byteLength = 8;
break;
default: { default: {
return RelocationResult.UNSUPPORTED; return RelocationResult.UNSUPPORTED;
} }