|
From: Keith M. <kei...@us...> - 2010-11-11 22:26:27
|
On Thursday 11 November 2010 20:49:06 Hehl, Thomas wrote: > Reading symbols from > C:\workspace\agile\agile-api-interface\Debug\test.o...done. > > .gdbinit: No such file or directory. Possibly an installation problem? Do you see this, if you invoke the gdb session directly from the command line, rather than from eclipse? > auto-solib-add on > > Undefined command: "auto-solib-add". Try "help". Isn't the correct form of this command "set auto-solib-add on"? (Did you try "help"? I identified that you've omitted the "set", by doing just that). $ gdb GNU gdb 6.8-debian Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later ... ... This GDB was configured as "i486-linux-gnu". (gdb) auto-solib-add on Undefined command: "auto-solib-add". Try "help". (gdb) help List of classes of commands: ... Type "help all" for the list of all commands. Type "help" followed by command name for full documentation. Type "apropos word" to search for commands related to "word". Command name abbreviations are allowed if unambiguous. (gdb) apropos auto-solib-add set auto-solib-add -- Set autoloading of shared library symbols show auto-solib-add -- Show autoloading of shared library symbols (gdb) help set auto-solib-add Set autoloading of shared library symbols. If "on", symbols from all shared object libraries will be loaded automatically when the inferior begins execution, ... ... (gdb) set auto-solib-add on (gdb) -- Regards, Keith. |