Merge pull request #1387 from Margen67/update_capstone
Update Capstone to latest stable (4.0.1).
This commit is contained in:
commit
372928cd57
|
@ -7,9 +7,6 @@
|
|||
[submodule "third_party/binutils-ppc-cygwin"]
|
||||
path = third_party/binutils-ppc-cygwin
|
||||
url = https://github.com/benvanik/binutils-ppc-cygwin
|
||||
[submodule "third_party/capstone"]
|
||||
path = third_party/capstone
|
||||
url = https://github.com/xenia-project/capstone.git
|
||||
[submodule "third_party/libav"]
|
||||
path = third_party/libav
|
||||
url = https://github.com/xenia-project/libav.git
|
||||
|
@ -49,3 +46,7 @@
|
|||
[submodule "third_party/aes_128"]
|
||||
path = third_party/aes_128
|
||||
url = https://github.com/openluopworld/aes_128.git
|
||||
[submodule "third_party/capstone"]
|
||||
path = third_party/capstone
|
||||
url = https://github.com/aquynh/capstone.git
|
||||
branch = master
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
|
||||
#include <climits>
|
||||
|
||||
#include "third_party/capstone/include/capstone.h"
|
||||
#include "third_party/capstone/include/x86.h"
|
||||
#include "third_party/capstone/include/capstone/capstone.h"
|
||||
#include "third_party/capstone/include/capstone/x86.h"
|
||||
#include "xenia/base/profiling.h"
|
||||
#include "xenia/base/reset_scope.h"
|
||||
#include "xenia/cpu/backend/x64/x64_backend.h"
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
|
||||
#include <stddef.h>
|
||||
|
||||
#include "third_party/capstone/include/capstone.h"
|
||||
#include "third_party/capstone/include/x86.h"
|
||||
#include "third_party/capstone/include/capstone/capstone.h"
|
||||
#include "third_party/capstone/include/capstone/x86.h"
|
||||
|
||||
#include "xenia/base/exception_handler.h"
|
||||
#include "xenia/base/logging.h"
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
#include <cinttypes>
|
||||
#include <utility>
|
||||
|
||||
#include "third_party/capstone/include/capstone.h"
|
||||
#include "third_party/capstone/include/x86.h"
|
||||
#include "third_party/capstone/include/capstone/capstone.h"
|
||||
#include "third_party/capstone/include/capstone/x86.h"
|
||||
#include "third_party/imgui/imgui.h"
|
||||
#include "third_party/imgui/imgui_internal.h"
|
||||
#include "third_party/yaml-cpp/include/yaml-cpp/yaml.h"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 121057635173f4da4ce26dd676c7470aef7bddce
|
||||
Subproject commit f9c6a90489be7b3637ff1c7298e45efafe7cf1b9
|
|
@ -30,7 +30,6 @@ project("capstone")
|
|||
"capstone/MCInstrDesc.h",
|
||||
"capstone/MCRegisterInfo.c",
|
||||
"capstone/MCRegisterInfo.h",
|
||||
"capstone/myinttypes.h",
|
||||
"capstone/SStream.c",
|
||||
"capstone/SStream.h",
|
||||
"capstone/utils.c",
|
||||
|
|
Loading…
Reference in New Issue