mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-27 23:40:25 +00:00
more comment updated in config.mk regarding the 'diet' mode
This commit is contained in:
parent
9ff0990470
commit
a1b740f5a2
10
config.mk
10
config.mk
@ -1,10 +1,12 @@
|
||||
################################################################################
|
||||
# Change 'CAPSTONE_DIET = no' to 'CAPSTONE_DIET = yes' to make the library
|
||||
# more compact: use less memory, and smaller in size.
|
||||
# This setup will remove all the mnemonic & op_str data, thus reduces the binary
|
||||
# size by around 40%.
|
||||
# NOTE: we still keep @mnemonic & @op_str fields in cs_insn structure regardless,
|
||||
# but they will not be updated (i.e blank) at the output of disassemble APIs.
|
||||
# This setup will remove the mnemonic & op_str data, plus semantic information
|
||||
# such as regs_read/write & group. The amount of reduced size in the binary
|
||||
# is around 40%.
|
||||
# NOTE: we still keep all those related fileds @mnemonic, @op_str, @regs_read,
|
||||
# @regs_write, @groups in fields in cs_insn structure regardless, but they
|
||||
# will not be updated (i.e empty) at the output of disassemble APIs.
|
||||
CAPSTONE_DIET = no
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user