mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
Merge pull request #1034 from Sonicadvance1/fix-android-arm-ndk64bit
Fix building ARMv7 on the 64bit Android NDK.
This commit is contained in:
commit
d5da60619e
1 changed files with 2 additions and 1 deletions
|
@ -89,8 +89,9 @@ const int BACKPATCH_SIZE = 5;
|
||||||
#define CTX_SP sp
|
#define CTX_SP sp
|
||||||
#define CTX_PC pc
|
#define CTX_PC pc
|
||||||
#elif _M_ARM_32
|
#elif _M_ARM_32
|
||||||
|
#include <asm/sigcontext.h>
|
||||||
// Add others if required.
|
// Add others if required.
|
||||||
typedef struct sigcontext SContext;
|
typedef sigcontext SContext;
|
||||||
#define CTX_PC arm_pc
|
#define CTX_PC arm_pc
|
||||||
#else
|
#else
|
||||||
#warning No context definition for OS
|
#warning No context definition for OS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue