我想知道如何知道GDB中的当前系统架构并将此信息存储到变量中以供以后评估。
类似的东西:
set variable $x=`shell uname -m`
答案 0 :(得分:19)
theres 2 way:
旧方式:
(gdb) shell echo set \$x=\"$(uname -m)\" >/tmp/foo.gdb
(gdb) source /tmp/foo.gdb
更新的python:
(gdb) python gdb.execute("set $y=\"" + os.uname()[4] + "\"")