diff --git a/.gitmodules b/.gitmodules index 87efe0386..091e17db1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,9 +13,6 @@ [submodule "third_party/sparsehash"] path = third_party/sparsehash 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"] path = third_party/asmjit url = https://github.com/benvanik/asmjit.git diff --git a/src/xenia/cpu/cpu.h b/src/xenia/cpu/cpu.h index 7f32bcbfa..e9fed4f77 100644 --- a/src/xenia/cpu/cpu.h +++ b/src/xenia/cpu/cpu.h @@ -13,6 +13,6 @@ #include // TODO(benvanik): conditionally include? -#include +//#include #endif // XENIA_CPU_CPU_H_ diff --git a/src/xenia/cpu/sources.gypi b/src/xenia/cpu/sources.gypi index 9a61a71d0..9a452458d 100644 --- a/src/xenia/cpu/sources.gypi +++ b/src/xenia/cpu/sources.gypi @@ -20,7 +20,6 @@ ], 'includes': [ - 'libjit/sources.gypi', 'ppc/sources.gypi', 'sdb/sources.gypi', ], diff --git a/third_party/libjit b/third_party/libjit deleted file mode 160000 index 7a6935159..000000000 --- a/third_party/libjit +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7a6935159427e59dfdcbddbe1fa03f2c5ad0951e diff --git a/tools/xenia-run/xenia-run.cc b/tools/xenia-run/xenia-run.cc index a5d0c8097..f41cd4ebd 100644 --- a/tools/xenia-run/xenia-run.cc +++ b/tools/xenia-run/xenia-run.cc @@ -46,7 +46,7 @@ int Run::Setup() { xe_zero_struct(&pal_options, sizeof(pal_options)); XEEXPECTZERO(xe_pal_init(pal_options)); - backend_ = shared_ptr(new xe::cpu::libjit::LibjitBackend()); + //backend_ = shared_ptr(new xe::cpu::libjit::LibjitBackend()); debugger_ = shared_ptr(new Debugger()); diff --git a/xenia.gyp b/xenia.gyp index 5f379e959..d4bb65d77 100644 --- a/xenia.gyp +++ b/xenia.gyp @@ -18,13 +18,11 @@ 'asmjit', 'beaengine', 'gflags', - 'third_party/libjit/libjit.gyp:libjit', ], 'export_dependent_settings': [ 'asmjit', 'beaengine', 'gflags', - 'third_party/libjit/libjit.gyp:libjit', ], 'direct_dependent_settings': {