Disabling x64 backend for now, as it's rubbish.
This commit is contained in:
parent
e36e1acc1a
commit
e6f3716d87
|
@ -11,6 +11,6 @@
|
||||||
|
|
||||||
'includes': [
|
'includes': [
|
||||||
'ivm/sources.gypi',
|
'ivm/sources.gypi',
|
||||||
'x64/sources.gypi',
|
#'x64/sources.gypi',
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@ Runtime::~Runtime() {
|
||||||
|
|
||||||
// TODO(benvanik): based on compiler support
|
// TODO(benvanik): based on compiler support
|
||||||
#include <alloy/backend/ivm/ivm_backend.h>
|
#include <alloy/backend/ivm/ivm_backend.h>
|
||||||
#include <alloy/backend/x64/x64_backend.h>
|
//#include <alloy/backend/x64/x64_backend.h>
|
||||||
|
|
||||||
int Runtime::Initialize(Frontend* frontend, Backend* backend) {
|
int Runtime::Initialize(Frontend* frontend, Backend* backend) {
|
||||||
// Must be initialized by subclass before calling into this.
|
// Must be initialized by subclass before calling into this.
|
||||||
|
@ -91,10 +91,10 @@ int Runtime::Initialize(Frontend* frontend, Backend* backend) {
|
||||||
#endif // ALLOY_HAS_IVM_BACKEND
|
#endif // ALLOY_HAS_IVM_BACKEND
|
||||||
if (FLAGS_runtime_backend == "any") {
|
if (FLAGS_runtime_backend == "any") {
|
||||||
#if defined(ALLOY_HAS_X64_BACKEND) && ALLOY_HAS_X64_BACKEND
|
#if defined(ALLOY_HAS_X64_BACKEND) && ALLOY_HAS_X64_BACKEND
|
||||||
/*if (!backend) {
|
if (!backend) {
|
||||||
backend = new alloy::backend::x64::X64Backend(
|
backend = new alloy::backend::x64::X64Backend(
|
||||||
this);
|
this);
|
||||||
}*/
|
}
|
||||||
#endif // ALLOY_HAS_X64_BACKEND
|
#endif // ALLOY_HAS_X64_BACKEND
|
||||||
#if defined(ALLOY_HAS_IVM_BACKEND) && ALLOY_HAS_IVM_BACKEND
|
#if defined(ALLOY_HAS_IVM_BACKEND) && ALLOY_HAS_IVM_BACKEND
|
||||||
if (!backend) {
|
if (!backend) {
|
||||||
|
|
Loading…
Reference in New Issue