Removing libjit, because it is pretty terrible.
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -13,9 +13,6 @@
|
|||||||
[submodule "third_party/sparsehash"]
|
[submodule "third_party/sparsehash"]
|
||||||
path = third_party/sparsehash
|
path = third_party/sparsehash
|
||||||
url = https://github.com/benvanik/sparsehash.git
|
url = https://github.com/benvanik/sparsehash.git
|
||||||
[submodule "third_party/libjit"]
|
|
||||||
path = third_party/libjit
|
|
||||||
url = https://github.com/benvanik/libjit.git
|
|
||||||
[submodule "third_party/asmjit"]
|
[submodule "third_party/asmjit"]
|
||||||
path = third_party/asmjit
|
path = third_party/asmjit
|
||||||
url = https://github.com/benvanik/asmjit.git
|
url = https://github.com/benvanik/asmjit.git
|
||||||
|
|||||||
@@ -13,6 +13,6 @@
|
|||||||
#include <xenia/cpu/processor.h>
|
#include <xenia/cpu/processor.h>
|
||||||
|
|
||||||
// TODO(benvanik): conditionally include?
|
// TODO(benvanik): conditionally include?
|
||||||
#include <xenia/cpu/libjit/libjit_backend.h>
|
//#include <xenia/cpu/libjit/libjit_backend.h>
|
||||||
|
|
||||||
#endif // XENIA_CPU_CPU_H_
|
#endif // XENIA_CPU_CPU_H_
|
||||||
|
|||||||
@@ -20,7 +20,6 @@
|
|||||||
],
|
],
|
||||||
|
|
||||||
'includes': [
|
'includes': [
|
||||||
'libjit/sources.gypi',
|
|
||||||
'ppc/sources.gypi',
|
'ppc/sources.gypi',
|
||||||
'sdb/sources.gypi',
|
'sdb/sources.gypi',
|
||||||
],
|
],
|
||||||
|
|||||||
1
third_party/libjit
vendored
1
third_party/libjit
vendored
Submodule third_party/libjit deleted from 7a69351594
@@ -46,7 +46,7 @@ int Run::Setup() {
|
|||||||
xe_zero_struct(&pal_options, sizeof(pal_options));
|
xe_zero_struct(&pal_options, sizeof(pal_options));
|
||||||
XEEXPECTZERO(xe_pal_init(pal_options));
|
XEEXPECTZERO(xe_pal_init(pal_options));
|
||||||
|
|
||||||
backend_ = shared_ptr<Backend>(new xe::cpu::libjit::LibjitBackend());
|
//backend_ = shared_ptr<Backend>(new xe::cpu::libjit::LibjitBackend());
|
||||||
|
|
||||||
debugger_ = shared_ptr<Debugger>(new Debugger());
|
debugger_ = shared_ptr<Debugger>(new Debugger());
|
||||||
|
|
||||||
|
|||||||
@@ -18,13 +18,11 @@
|
|||||||
'asmjit',
|
'asmjit',
|
||||||
'beaengine',
|
'beaengine',
|
||||||
'gflags',
|
'gflags',
|
||||||
'third_party/libjit/libjit.gyp:libjit',
|
|
||||||
],
|
],
|
||||||
'export_dependent_settings': [
|
'export_dependent_settings': [
|
||||||
'asmjit',
|
'asmjit',
|
||||||
'beaengine',
|
'beaengine',
|
||||||
'gflags',
|
'gflags',
|
||||||
'third_party/libjit/libjit.gyp:libjit',
|
|
||||||
],
|
],
|
||||||
|
|
||||||
'direct_dependent_settings': {
|
'direct_dependent_settings': {
|
||||||
|
|||||||
Reference in New Issue
Block a user