diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-09-14 16:02:02 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-10-03 04:23:14 -0500 |
commit | eef20e402c8ff5cacd86222288a722ce7e1a3cb8 (patch) | |
tree | 4460b7301128a6078bc482814fb387dd9e8b3f5f /meson.build | |
parent | 8b18cdbfd6c7add5fb8dae5c81596c381fe6e237 (diff) | |
download | qemu-eef20e402c8ff5cacd86222288a722ce7e1a3cb8.zip qemu-eef20e402c8ff5cacd86222288a722ce7e1a3cb8.tar.gz qemu-eef20e402c8ff5cacd86222288a722ce7e1a3cb8.tar.bz2 |
capstone: Update to upstream "next" branch
This branch contains a number of improvements over master,
including making all of the disassembler data constant.
We are skipping past the 4.0 branchpoint, which changed
the location of the includes within the source directory.
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index b9f6e84..8d6fb80 100644 --- a/meson.build +++ b/meson.build @@ -802,6 +802,7 @@ if capstone_opt == 'internal' 'capstone/arch/X86/X86DisassemblerDecoder.c', 'capstone/arch/X86/X86ATTInstPrinter.c', 'capstone/arch/X86/X86IntelInstPrinter.c', + 'capstone/arch/X86/X86InstPrinterCommon.c', 'capstone/arch/X86/X86Mapping.c', 'capstone/arch/X86/X86Module.c' ) @@ -826,7 +827,7 @@ if capstone_opt == 'internal' c_args: capstone_cargs, include_directories: 'capstone/include') capstone = declare_dependency(link_with: libcapstone, - include_directories: 'capstone/include') + include_directories: 'capstone/include/capstone') endif config_host_data.set('CONFIG_CAPSTONE', capstone.found()) |