This is the mail archive of the
gdb@sourceware.org
mailing list for the GDB project.
Re: Undo add-symbol-file
On 6/21/06, Daniel Jacobowitz <drow@false.org> wrote:
Try just "symbol-file", without a new symbol file?
Aha! Here's the trick. I was trying to move a symbol file loaded with
add-symbol-file from location a to b. So I tried...
symbol-file kernel
add-symbol-file busybox 0x1000000
... hoping that the symbol-file command would clear the
add-symbol-file tables. It does not work this way. However, as you
pointed out, the following does work.
symbol-file
symbol-file kernel
add-symbol-file busybox 0x1000000
Thanks!
Shaun