config.mk revision cf4df4b036155dd53849e6adb7b68ebcddb6eae0
1# Comment out the line below 'USE_SYS_DYN_MEM = yes' if you do not want to use
2# system's malloc()/calloc()/realloc()/free() for internal dynamic memory management.
3# NOTE: in that case, your program must specify your own malloc/calloc/realloc/free
4# functions with cs_option(), using CS_OPT_MEM option type.
5USE_SYS_DYN_MEM = yes
6
7# Specify which archs you want to compile in
8# DO NOT touch the line below.
9CAPSTONE_ARCHS =
10
11# Comment out the line below if you don't want to support ARM
12CAPSTONE_ARCHS += arm
13
14# Comment out the line below if you don't want to support ARM64
15CAPSTONE_ARCHS += aarch64
16
17# Comment out the line below if you don't want to support Mips
18CAPSTONE_ARCHS += mips
19
20# Comment out the line below if you don't want to support X86
21CAPSTONE_ARCHS += x86
22
23# Comment out the line below if you don't want to support PowerPC
24CAPSTONE_ARCHS += powerpc
25