1This documentation explains how to compile Capstone with CMake, focus on 2using Microsoft Visual C as the compiler. 3 4To compile Capstone on *nix, see COMPILE.TXT. 5 6To compile Capstone on Windows using Visual Studio, see COMPILE_MSVC.TXT. 7 8 *-*-*-*-*-* 9 10This documentation requires CMake & Windows SDK or MS Visual Studio installed on 11your machine. 12 13Get CMake for free from http://www.cmake.org. 14 15 16 17(0) Tailor Capstone to your need. 18 19 Out of 8 archtitectures supported by Capstone (Arm, Arm64, Mips, PPC, Sparc, 20 SystemZ, X86 & XCore), if you just need several selected archs, run "cmake" 21 with the unwanted archs disabled (set to 0) as followings. 22 23 - CAPSTONE_ARM_SUPPORT: support ARM. Run cmake with -DCAPSTONE_ARM_SUPPORT=0 to remove ARM. 24 - CAPSTONE_ARM64_SUPPORT: support ARM64. Run cmake with -DCAPSTONE_ARM64_SUPPORT=0 to remove ARM64. 25 - CAPSTONE_MIPS_SUPPORT: support Mips. Run cmake with -DCAPSTONE_MIPS_SUPPORT=0 to remove Mips. 26 - CAPSTONE_PPC_SUPPORT: support PPC. Run cmake with -DCAPSTONE_PPC_SUPPORT=0 to remove PPC. 27 - CAPSTONE_SPARC_SUPPORT: support Sparc. Run cmake with -DCAPSTONE_SPARC_SUPPORT=0 to remove Sparc. 28 - CAPSTONE_SYSZ_SUPPORT: support SystemZ. Run cmake with -DCAPSTONE_SYSZ_SUPPORT=0 to remove SystemZ. 29 - CAPSTONE_XCORE_SUPPORT: support XCore. Run cmake with -DCAPSTONE_XCORE_SUPPORT=0 to remove XCore. 30 - CAPSTONE_X86_SUPPORT: support X86. Run cmake with -DCAPSTONE_X86_SUPPORT=0 to remove X86. 31 32 By default, all 8 architectures are compiled in. 33 34 35 Besides, Capstone also allows some more customization via following macros. 36 37 - CAPSTONE_USE_SYS_DYN_MEM: change this to OFF to use your own dynamic memory management. 38 - CAPSTONE_BUILD_DIET: change this to ON to make the binaries more compact. 39 - CAPSTONE_X86_REDUCE: change this to ON to make X86 binary smaller. 40 - CAPSTONE_X86_ATT_DISABLE: change this to ON to disable AT&T syntax on x86. 41 42 By default, Capstone use system dynamic memory management, and both DIET and X86_REDUCE 43 modes are disabled. To use your own memory allocations, turn ON both DIET & 44 X86_REDUCE, run "cmake" with: -DCAPSTONE_USE_SYS_DYN_MEM=0 -DCAPSTONE_BUILD_DIET=1 -DCAPSTONE_X86_REDUCE=1 45 46 47 For each option, refer to docs/README for more details. 48 49 50 51(1) CMake allows you to generate different generators to build Capstone. Below is 52 some examples on how to build Capstone on Windows with CMake. 53 54 55 (*) To build Capstone using Nmake of Windows SDK, do: 56 57 mkdir build 58 cd build 59 ..\nmake.bat 60 61 After this, find the samples test*.exe, capstone.lib & capstone.dll 62 in the same directory. 63 64 65 66 (*) To build Capstone using Visual Studio, choose the generator accordingly to the 67 version of Visual Studio on your machine. For example, with Visual Studio 2013, do: 68 69 mkdir build 70 cd build 71 cmake -G "Visual Studio 12" .. 72 73 After this, find capstone.sln in the same directory. Open it with Visual Studio 74 and build the solution including libraries & all test as usual. 75 76 77 78(2) You can make sure the prior steps successfully worked by launching one of the 79 testing binary (test*.exe). 80 81