build: Disble fixed base for windows-on-arm

This commit is contained in:
kd-11 2024-09-08 00:45:39 +00:00 committed by kd-11
parent 4f27af9949
commit 31ce32709e
2 changed files with 6 additions and 3 deletions

View file

@ -1841,9 +1841,9 @@ static LONG exception_filter(PEXCEPTION_POINTERS pExp) noexcept
}
#if defined(ARCH_X64)
const exec_addr = pExp->ContextRecord->Rip;
const auto exec_addr = pExp->ContextRecord->Rip;
#elif defined(ARCH_ARM64)
const exec_addr = pExp->ContextRecord->Pc;
const auto exec_addr = pExp->ContextRecord->Pc;
#else
#error "Unimplemented exception handling for this architecture"
#endif