0

$HOME ディレクトリに新しいファイル .gdbinit を作成しました。gdb コマンドを実行すると、次のエラーが発生します。

bld05 abc /users/abc 25 > gdb
GNU gdb Red Hat Linux (6.3.0.0-1.132.EL4rh)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-redhat-linux-gnu"./users/abc/.gdbinit:1: Error in sourced command file:
Undefined command: "TL".  Try "help".

何がうまくいかなかったのかわかりません。誰でも教えてもらえますか?

.gdbinit ファイルにはhttp://www.yolinux.com/TUTORIALS/src/dbinit_stl_views-1.03.txtが含まれています

4

1 に答える 1

2

2012 年に gdb 6.3 を使用してもあまり意味がありません (Mac を除く)。7.5 などの新しいものを入手してください。これは、C++ でもうまく機能します。

また、gdb にプログラムをロードするには、gdb --args /your/binary arg1 arg2 を使用します。

于 2012-10-09T21:13:18.720 に答える