CMake: Support multiple CMAKE_OSX_ARCHITECTURES

This commit is contained in:
Stenzek
2023-11-24 19:14:57 +10:00
parent af86e5d058
commit 7cc52bba23
23 changed files with 106 additions and 82 deletions

View File

@ -14,6 +14,9 @@
#include "settings.h"
#include "timing_event.h"
#include <limits>
#ifdef CPU_ARCH_ARM32
Log_SetChannel(CPU::NewRec);
#define PTR(x) vixl::aarch32::MemOperand(RSTATE, (((u8*)(x)) - ((u8*)&g_state)))
@ -2260,3 +2263,5 @@ u32 CPU::NewRec::CompileLoadStoreThunk(void* thunk_code, u32 thunk_space, void*
return static_cast<u32>(armAsm->GetCursorOffset());
}
#endif // CPU_ARCH_ARM32