/usr/share/doc/libcapstone-dev/HACK.TXT is in libcapstone-dev 2.1.2-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | Capstone source is organized as followings.
. <- core engine + README + COMPILE.TXT etc
├── arch <- code handling disasm engine for each arch
│ ├── AArch64 <- ARM64 (aka ARMv8) engine
│ ├── ARM <- ARM engine
│ ├── Mips <- Mips engine
│ ├── PowerPC <- PowerPC engine
│ └── X86 <- X86 engine
├── bindings <- all bindings are under this dir
│ ├── java <- Java bindings + test code
│ ├── ocaml <- Ocaml bindings + test code
│ ├── python <- Python bindings + test code
├── include <- API headers in C language (*.h)
├── suite <- Development test tools - for Capstone developers only
├── tests <- Test code (in C language)
Follow instructions in COMPILE.TXT to see how to compile and run code.
Note: if you find some strange bugs, it is recommended to firstly clean
the code and try to recompile/reinstall again. This can be done with:
$ make clean
$ make
$ sudo make install
|