You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
2.8 KiB
111 lines
2.8 KiB
How To Compile, install & run Capstone for Linux, Mac OSX, *BSD and Windows |
|
*-*-*-*-*-* |
|
|
|
Capstone requires no prerequisite packages, so it is easy to compile & install. |
|
|
|
|
|
|
|
(0) Tailor Capstone to your need. |
|
|
|
Out of 5 archtitectures supported by Capstone (Arm, Arm64, Mips, PPC & X86), |
|
if you just need several selected archs, you can choose which ones you want |
|
to compile in by modifying config.mk before going to next steps. |
|
|
|
By default, all 5 architectures are compiled. |
|
|
|
|
|
|
|
(1) Compile from source |
|
|
|
On *nix (such as MacOSX, Linux, *BSD, Solaris): |
|
|
|
- To compile for current platform, run: |
|
|
|
$ ./make.sh |
|
|
|
- On 64-bit OS, run command below to cross-compile Capstone for 32-bit binary: |
|
|
|
$ ./make.sh nix32 |
|
|
|
|
|
|
|
(2) Install Capstone on *nix |
|
|
|
To install Capstone, run: |
|
|
|
$ sudo ./make.sh install |
|
|
|
For FreeBSD/OpenBSD, where sudo is unavailable, run: |
|
|
|
$ su; ./make.sh install |
|
|
|
Users are then required to enter root password to copy Capstone into machine |
|
system directories. |
|
|
|
Afterwards, run ./tests/test* to see the tests disassembling sample code. |
|
|
|
|
|
NOTE: The core framework installed by "./make.sh install" consist of |
|
following files: |
|
|
|
/usr/include/capstone/capstone.h |
|
/usr/include/capstone/x86.h |
|
/usr/include/capstone/arm.h |
|
/usr/include/capstone/arm64.h |
|
/usr/include/capstone/mips.h |
|
/usr/include/capstone/ppc.h |
|
/usr/lib/libcapstone.so (for Linux/*nix), or /usr/lib/libcapstone.dylib (OSX) |
|
/usr/lib/libcapstone.a |
|
|
|
|
|
|
|
(3) Cross-compile Windows from *nix |
|
|
|
To cross-compile for Windows, Linux & gcc-mingw-w64-i686 (and also gcc-mingw-w64-x86-64 |
|
for 64-bit binaries) are required. |
|
|
|
- To cross-compile Windows 32-bit binary, simply run: |
|
$ ./make.sh cross-win32 |
|
|
|
- To cross-compile Windows 64-bit binary, run: |
|
$ ./make.sh cross-win64 |
|
|
|
Resulted files libcapstone.dll, libcapstone.dll.a & tests/test*.exe can then |
|
be used on Windows machine. |
|
|
|
|
|
|
|
(4) Compile on Windows with Cygwin |
|
|
|
To compile under Cygwin gcc-mingw-w64-i686 or x86_64-w64-mingw32 run: |
|
|
|
- To compile Windows 32-bit binary under Cygwin, simply run |
|
$ ./make.sh cygwin-mingw32 |
|
|
|
- To compile Windows 64-bit binary under Cygwin, run |
|
$ ./make.sh cygwin-mingw64 |
|
|
|
Resulted files libcapstone.dll, libcapstone.dll.a & tests/test*.exe can then |
|
be used on Windows machine. |
|
|
|
|
|
(5) By default, "cc" (default C compiler on the system) is used as compiler. |
|
|
|
- To use "clang" compiler instead, run command below: |
|
|
|
$ ./make.sh clang |
|
|
|
- To use "gcc" compiler instead, run: |
|
|
|
$ ./make.sh gcc |
|
|
|
|
|
|
|
(6) Language bindings |
|
|
|
So far, Python, Ocaml & Java are supported by bindings in the main code. |
|
Look for the bindings under directory bindings/, and refer to README file |
|
of corresponding languages. |
|
|
|
Community also provide bindings for C#, Go, Ruby & Vala. Links to these can |
|
be found at address http://capstone-engine.org/download.html
|
|
|