3

アプリケーションをデバッグしようとしていて、次のコマンドを使用してデータを渡したいのですが、エラーが発生しています。

    ....
    ....
    (gdb) x/20x $esp
    Value can't be converted to integer.
    (gdb)

私のGDBバージョンは次のとおりです。

#gdb -v
GNU gdb (GDB) Red Hat Enterprise Linux (7.0.1-23.el5)
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-redhat-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
4

2 に答える 2

4

(gdb) x/20x $esp
Value can't be converted to integer.

試してみるx/20x $rspx/20x $sp

于 2012-07-26T02:05:21.520 に答える