(linux build fix)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4893 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
562ed5e8a5
commit
39d570dc70
|
@ -45,6 +45,7 @@
|
||||||
#include "HW/Memmap.h"
|
#include "HW/Memmap.h"
|
||||||
#include "PowerPC/PowerPC.h"
|
#include "PowerPC/PowerPC.h"
|
||||||
#include "PowerPC/JitCommon/JitBase.h"
|
#include "PowerPC/JitCommon/JitBase.h"
|
||||||
|
#include "PowerPC/JitCommon/JitBackpatch.h"
|
||||||
#include "x64Analyzer.h"
|
#include "x64Analyzer.h"
|
||||||
|
|
||||||
namespace EMM
|
namespace EMM
|
||||||
|
|
|
@ -34,23 +34,6 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _WIN32
|
|
||||||
|
|
||||||
// A bit of a hack to get things building under linux. We manually fill in this structure as needed
|
|
||||||
// from the real context.
|
|
||||||
struct CONTEXT
|
|
||||||
{
|
|
||||||
#ifdef _M_X64
|
|
||||||
u64 Rip;
|
|
||||||
u64 Rax;
|
|
||||||
#else
|
|
||||||
u32 Eip;
|
|
||||||
u32 Eax;
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
using namespace Gen;
|
using namespace Gen;
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,23 @@
|
||||||
|
|
||||||
// void Jit(u32 em_address);
|
// void Jit(u32 em_address);
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
|
|
||||||
|
// A bit of a hack to get things building under linux. We manually fill in this structure as needed
|
||||||
|
// from the real context.
|
||||||
|
struct CONTEXT
|
||||||
|
{
|
||||||
|
#ifdef _M_X64
|
||||||
|
u64 Rip;
|
||||||
|
u64 Rax;
|
||||||
|
#else
|
||||||
|
u32 Eip;
|
||||||
|
u32 Eax;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
class TrampolineCache : public Gen::XCodeBlock
|
class TrampolineCache : public Gen::XCodeBlock
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue