GDB中等效的lldb命令是什么?
(gdb)set {char} 0x02ae4 = 0x12
值是任意的例子。使用GDB,我可以轻松编辑给定十六进制地址的字节代码,同时查看终端中的转储。自从我升级为小牛队以来,我一直试图用lldb来捣乱,但我在一些领域遇到了困难。也许它甚至还没有这个功能..
答案 0 :(得分:10)
根据lldb-basics guide LLDB,替代方案为memory write
。
同样(lldb) help memory write
定义了这样的输入格式:
memory write -i <filename> [-s <byte-size>] [-o <offset>] <address> <value> [<value> [...]]
-f <format> ( --format <format> )
Specify a format to be used for display.
-i <filename> ( --infile <filename> )
Write memory using the contents of a file.
-o <offset> ( --offset <offset> )
Start writng bytes from an offset within the input file.
-s <byte-size> ( --size <byte-size> )
The size in bytes to use when displaying with the selected format.
因此,在您的情况下,像(lldb) memory write 0x02ae4 0x12
这样的东西应该可以正常工作。
答案 1 :(得分:3)
memory write
有效,但您也可以将表达式引擎与 C 表达式一起使用,例如
p *(char*)0x2ae4 = 0x12