blob: e9c73b36f83913dc9db91057e4fca034b96aad7e [file] [log] [blame]
Nguyen Anh Quynh59492c22014-01-05 23:41:31 +08001# 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
Nguyen Anh Quynh5219f642013-12-22 13:00:48 +08007# Specify which archs you want to compile in
8CAPSTONE_ARCHS =
danghvu6f52bf92013-12-19 22:43:01 -06009
Nguyen Anh Quynh0f9cb0f2013-12-28 14:12:54 +080010# Comment the line below if you don't want to support ARM
Nguyen Anh Quynhf954f872013-12-22 18:49:22 +080011CAPSTONE_ARCHS += arm
Nguyen Anh Quynh5219f642013-12-22 13:00:48 +080012
Nguyen Anh Quynh0f9cb0f2013-12-28 14:12:54 +080013# Comment the line below if you don't want to support ARM64
Nguyen Anh Quynhf954f872013-12-22 18:49:22 +080014CAPSTONE_ARCHS += aarch64
Nguyen Anh Quynh5219f642013-12-22 13:00:48 +080015
Nguyen Anh Quynh0f9cb0f2013-12-28 14:12:54 +080016# Comment the line below if you don't want to support Mips
Nguyen Anh Quynhf954f872013-12-22 18:49:22 +080017CAPSTONE_ARCHS += mips
Nguyen Anh Quynh5219f642013-12-22 13:00:48 +080018
Nguyen Anh Quynh0f9cb0f2013-12-28 14:12:54 +080019# Comment the line below if you don't want to support X86
Nguyen Anh Quynh5219f642013-12-22 13:00:48 +080020CAPSTONE_ARCHS += x86
Nguyen Anh Quynh0f9cb0f2013-12-28 14:12:54 +080021
22# Comment the line below if you don't want to support PowerPC
23CAPSTONE_ARCHS += powerpc