Nguyen Anh Quynh | b8f2af6 | 2013-12-25 10:49:59 +0800 | [diff] [blame] | 1 | How To Compile, install & run Capstone for Linux, Mac OSX, *BSD and Windows |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 2 | *-*-*-*-*-* |
| 3 | |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 4 | Capstone requires no prerequisite packages, so it is easy to compile & install. |
| 5 | |
| 6 | |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 7 | |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 8 | (0) Tailor Capstone to your need. |
| 9 | |
Nguyen Anh Quynh | 48a14ca | 2014-03-23 08:35:45 +0800 | [diff] [blame] | 10 | Out of 7 archtitectures supported by Capstone (Arm, Arm64, Mips, PPC, Sparc, |
Nguyen Anh Quynh | 18759b3 | 2014-04-29 14:00:16 +0800 | [diff] [blame] | 11 | SystemZ & X86), if you just need several selected archs, choose which ones you |
| 12 | want to compile in by editing "config.mk" before going to next steps. |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 13 | |
Nguyen Anh Quynh | 48a14ca | 2014-03-23 08:35:45 +0800 | [diff] [blame] | 14 | By default, all 7 architectures are compiled. |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 15 | |
Nguyen Anh Quynh | 18759b3 | 2014-04-29 14:00:16 +0800 | [diff] [blame] | 16 | The other way of customize Capstone without having to edit config.mk is to |
| 17 | pass the desired options on the commandline to ./make.sh. Currently, |
| 18 | Capstone supports 4 options, as followings. |
| 19 | |
| 20 | - CAPSTONE_ARCHS: specify list of architectures to compiled in. |
Nguyen Anh Quynh | e31327d | 2014-04-29 14:25:15 +0800 | [diff] [blame] | 21 | - CAPSTONE_USE_SYS_DYN_MEM: change this if you have your own dynamic memory management. |
Nguyen Anh Quynh | 18759b3 | 2014-04-29 14:00:16 +0800 | [diff] [blame] | 22 | - CAPSTONE_DIET: use this to make the output binaries more compact. |
| 23 | - CAPSTONE_X86_REDUCE: another option to make X86 binary smaller. |
| 24 | |
| 25 | To avoid editing config.mk for these customization, can pass their values to |
| 26 | make.sh, as followings. |
| 27 | |
Nguyen Anh Quynh | e31327d | 2014-04-29 14:25:15 +0800 | [diff] [blame] | 28 | $ CAPSTONE_ARCHS="arm aarch64 x86" CAPSTONE_USE_SYS_DYN_MEM=no CAPSTONE_DIET=yes CAPSTONE_X86_REDUCE=yes ./make.sh |
Nguyen Anh Quynh | 18759b3 | 2014-04-29 14:00:16 +0800 | [diff] [blame] | 29 | |
| 30 | NOTE: on commandline, put these values in front of ./make.sh, not after it. |
| 31 | |
| 32 | See default values of above options in config.mk |
| 33 | For each option, refer to docs/README for more details. |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 34 | |
| 35 | |
Nguyen Anh Quynh | f08ed97 | 2014-04-07 22:13:56 +0800 | [diff] [blame] | 36 | |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 37 | (1) Compile from source |
| 38 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 39 | On *nix (such as MacOSX, Linux, *BSD, Solaris): |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 40 | |
Nguyen Anh Quynh | fe5e7f3 | 2014-01-17 14:56:03 +0800 | [diff] [blame] | 41 | - To compile for current platform, run: |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 42 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 43 | $ ./make.sh |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 44 | |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 45 | - On 64-bit OS, run the command below to cross-compile Capstone for 32-bit binary: |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 46 | |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 47 | $ ./make.sh nix32 |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 48 | |
| 49 | |
| 50 | |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 51 | (2) Install Capstone on *nix |
| 52 | |
| 53 | To install Capstone, run: |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 54 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 55 | $ sudo ./make.sh install |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 56 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 57 | For FreeBSD/OpenBSD, where sudo is unavailable, run: |
Nguyen Anh Quynh | f74bebf | 2013-12-09 13:53:11 +0800 | [diff] [blame] | 58 | |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 59 | $ su; ./make.sh install |
Nguyen Anh Quynh | f74bebf | 2013-12-09 13:53:11 +0800 | [diff] [blame] | 60 | |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 61 | Users are then required to enter root password to copy Capstone into machine |
| 62 | system directories. |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 63 | |
Nguyen Anh Quynh | 9919e3b | 2014-01-22 10:17:17 +0800 | [diff] [blame] | 64 | Afterwards, run ./tests/test* to see the tests disassembling sample code. |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 65 | |
| 66 | |
Nguyen Anh Quynh | fe5e7f3 | 2014-01-17 14:56:03 +0800 | [diff] [blame] | 67 | NOTE: The core framework installed by "./make.sh install" consist of |
| 68 | following files: |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 69 | |
Patroklos Argyroudis | a6503fe | 2013-11-27 14:25:34 +0200 | [diff] [blame] | 70 | /usr/include/capstone/capstone.h |
| 71 | /usr/include/capstone/x86.h |
| 72 | /usr/include/capstone/arm.h |
| 73 | /usr/include/capstone/arm64.h |
| 74 | /usr/include/capstone/mips.h |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 75 | /usr/include/capstone/ppc.h |
Nguyen Anh Quynh | 05e2713 | 2014-03-10 11:58:57 +0800 | [diff] [blame] | 76 | /usr/include/capstone/sparc.h |
Nguyen Anh Quynh | 48a14ca | 2014-03-23 08:35:45 +0800 | [diff] [blame] | 77 | /usr/include/capstone/systemz.h |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 78 | /usr/lib/libcapstone.so (for Linux/*nix), or /usr/lib/libcapstone.dylib (OSX) |
Nguyen Anh Quynh | 0427122 | 2013-12-09 11:12:47 +0800 | [diff] [blame] | 79 | /usr/lib/libcapstone.a |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 80 | |
| 81 | |
| 82 | |
Nguyen Anh Quynh | f08ed97 | 2014-04-07 22:13:56 +0800 | [diff] [blame] | 83 | (3) Cross-compile for Windows from *nix |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 84 | |
| 85 | To cross-compile for Windows, Linux & gcc-mingw-w64-i686 (and also gcc-mingw-w64-x86-64 |
| 86 | for 64-bit binaries) are required. |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 87 | |
Nguyen Anh Quynh | fe5e7f3 | 2014-01-17 14:56:03 +0800 | [diff] [blame] | 88 | - To cross-compile Windows 32-bit binary, simply run: |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 89 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 90 | $ ./make.sh cross-win32 |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 91 | |
Nguyen Anh Quynh | fe5e7f3 | 2014-01-17 14:56:03 +0800 | [diff] [blame] | 92 | - To cross-compile Windows 64-bit binary, run: |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 93 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 94 | $ ./make.sh cross-win64 |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 95 | |
Nguyen Anh Quynh | 9919e3b | 2014-01-22 10:17:17 +0800 | [diff] [blame] | 96 | Resulted files libcapstone.dll, libcapstone.dll.a & tests/test*.exe can then |
| 97 | be used on Windows machine. |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 98 | |
| 99 | |
| 100 | |
Nguyen Anh Quynh | f08ed97 | 2014-04-07 22:13:56 +0800 | [diff] [blame] | 101 | (4) Cross-compile for iOS from Mac OSX. |
Nguyen Anh Quynh | 2eecc6c | 2014-04-01 10:22:54 +0800 | [diff] [blame] | 102 | |
| 103 | To cross-compile for iOS (iPhone/iPad/iPod), Mac OSX with XCode installed is required. |
| 104 | |
| 105 | - To cross-compile for ArmV7 (iPod 4, iPad 1/2/3, iPhone4, iPhone4S), run: |
| 106 | $ ./make.sh ios_armv7 |
| 107 | |
| 108 | - To cross-compile for ArmV7s (iPad 4, iPhone 5C, iPad mini), run: |
| 109 | $ ./make.sh ios_armv7s |
| 110 | |
| 111 | - To cross-compile for Arm64 (iPhone 5S, iPad mini Retina, iPad Air), run: |
| 112 | $ ./make.sh ios_arm64 |
| 113 | |
| 114 | - To cross-compile for all iDevices (armv7 + armv7s + arm64), run: |
| 115 | $ ./make.sh ios |
| 116 | |
| 117 | Resulted files libcapstone.dylib, libcapstone.a & tests/test* can then |
| 118 | be used on iOS devices. |
| 119 | |
| 120 | |
| 121 | |
Nguyen Anh Quynh | f08ed97 | 2014-04-07 22:13:56 +0800 | [diff] [blame] | 122 | (5) Cross-compile for Android |
| 123 | |
| 124 | To cross-compile for Android (smartphone/tablet), Android NDK is required. |
| 125 | |
| 126 | $ ./make.sh cross-android |
| 127 | |
| 128 | Resulted files libcapstone.so, libcapstone.a & tests/test* can then |
| 129 | be used on Android devices. |
| 130 | |
| 131 | |
| 132 | |
| 133 | (6) Compile on Windows with Cygwin |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 134 | |
| 135 | To compile under Cygwin gcc-mingw-w64-i686 or x86_64-w64-mingw32 run: |
Daniel Godas-Lopez | cf05e11 | 2013-11-28 18:23:39 +0000 | [diff] [blame] | 136 | |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 137 | - To compile Windows 32-bit binary under Cygwin, run: |
| 138 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 139 | $ ./make.sh cygwin-mingw32 |
Daniel Godas-Lopez | cf05e11 | 2013-11-28 18:23:39 +0000 | [diff] [blame] | 140 | |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 141 | - To compile Windows 64-bit binary under Cygwin, run: |
| 142 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 143 | $ ./make.sh cygwin-mingw64 |
Daniel Godas-Lopez | cf05e11 | 2013-11-28 18:23:39 +0000 | [diff] [blame] | 144 | |
Nguyen Anh Quynh | 9919e3b | 2014-01-22 10:17:17 +0800 | [diff] [blame] | 145 | Resulted files libcapstone.dll, libcapstone.dll.a & tests/test*.exe can then |
| 146 | be used on Windows machine. |
Daniel Godas-Lopez | cf05e11 | 2013-11-28 18:23:39 +0000 | [diff] [blame] | 147 | |
Nguyen Anh Quynh | fe5e7f3 | 2014-01-17 14:56:03 +0800 | [diff] [blame] | 148 | |
Nguyen Anh Quynh | f08ed97 | 2014-04-07 22:13:56 +0800 | [diff] [blame] | 149 | |
| 150 | (7) By default, "cc" (default C compiler on the system) is used as compiler. |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 151 | |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 152 | - To use "clang" compiler instead, run the command below: |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 153 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 154 | $ ./make.sh clang |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 155 | |
Nguyen Anh Quynh | fe5e7f3 | 2014-01-17 14:56:03 +0800 | [diff] [blame] | 156 | - To use "gcc" compiler instead, run: |
Oliver Pinter | 6e2c075 | 2014-01-16 12:16:21 +0100 | [diff] [blame] | 157 | |
Nguyen Anh Quynh | dba00f8 | 2014-01-17 14:20:54 +0800 | [diff] [blame] | 158 | $ ./make.sh gcc |
Oliver Pinter | 6e2c075 | 2014-01-16 12:16:21 +0100 | [diff] [blame] | 159 | |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 160 | |
| 161 | |
Nguyen Anh Quynh | de6dd29 | 2014-04-14 14:40:25 +0800 | [diff] [blame] | 162 | (8) To uninstall Capstone, run the command below: |
Nguyen Anh Quynh | 919875b | 2014-04-14 14:00:12 +0800 | [diff] [blame] | 163 | |
| 164 | $ sudo ./make.sh uninstall |
| 165 | |
| 166 | |
| 167 | |
| 168 | (9) Language bindings |
Nguyen Anh Quynh | a6a1153 | 2013-12-24 17:03:45 +0800 | [diff] [blame] | 169 | |
Nguyen Anh Quynh | 9919e3b | 2014-01-22 10:17:17 +0800 | [diff] [blame] | 170 | So far, Python, Ocaml & Java are supported by bindings in the main code. |
| 171 | Look for the bindings under directory bindings/, and refer to README file |
| 172 | of corresponding languages. |
| 173 | |
| 174 | Community also provide bindings for C#, Go, Ruby & Vala. Links to these can |
| 175 | be found at address http://capstone-engine.org/download.html |