Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道可以使用info variablesgdb 中的命令输出所有全局变量和静态变量的名称(以及静态数组的大小)。我也知道变量的地址可以使用info address.
info variables
info address
是否可以显示存储变量的所有地址的列表?例如,这可以用来知道在损坏的数组之前哪个数组存储在内存中。
对于全局变量,您不需要 gdb。
只是为了 nm -n yourbinary。