From d03edf49bce1860f061172640a6292e9c9f8ba2e Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Sun, 2 Mar 2014 10:20:37 +0800 Subject: [PATCH] add more instructions to config.mk --- config.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.mk b/config.mk index a8677d8ce..62f9463ae 100644 --- a/config.mk +++ b/config.mk @@ -1,3 +1,6 @@ +# This file contains all customized compile options for Capstone. +# Modify it before building step. Consult docs/README for instructions. + ################################################################################ # Specify which archs you want to compile in. By default, we build all archs. # DO NOT touch the line below. @@ -26,6 +29,7 @@ CAPSTONE_ARCHS += x86 # # NOTE: in that case, specify your own malloc/calloc/realloc/free/vnsprintf() # functions in your program via API cs_option(), using CS_OPT_MEM option type. + USE_SYS_DYN_MEM = yes @@ -39,4 +43,5 @@ USE_SYS_DYN_MEM = yes # NOTE: we still keep all those related fileds @mnemonic, @op_str, @regs_read, # @regs_write, @groups, etc in fields in cs_insn structure regardless, but they # will not be updated (i.e empty) at the output of related APIs. + CAPSTONE_DIET = no