• Home
  • Raw
  • Download

Lines Matching +full:x86 +full:- +full:windows

6 To compile Capstone on Windows using Visual Studio, see COMPILE_MSVC.TXT.
8 *-*-*-*-*-*
10 This documentation requires CMake & Windows SDK or MS Visual Studio installed on
20 SystemZ, X86 & XCore), if you just need several selected archs, run "cmake"
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 Syste…
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.
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.
44 …X86_REDUCE, run "cmake" with: -DCAPSTONE_USE_SYS_DYN_MEM=0 -DCAPSTONE_BUILD_DIET=1 -DCAPSTONE_X86_…
52 some examples on how to build Capstone on Windows with CMake.
55 (*) To build Capstone using Nmake of Windows SDK, do:
71 cmake -G "Visual Studio 12" ..