Lldb: how I 'look' the contents of an array

How to "watch" the inner contents of an array using a watchpoint similar to gdb, where setting the watchpoint in an array variable is in the "clock" for any change in the entire array. example (gdb):

Hardware watchpoint 2: c

Old value = {1, 2, 0}
New value = {0, 2, 0}

      

how to achieve the same (if possible) in lldb?

+3


source to share





All Articles