On Sat, 15 Jan 2005 15:44:15 -0600, DOOManiac <[EMAIL PROTECTED]> wrote: > Thanks for the help. That's the -g option correct? If so, then yes. > > I tried r at the (gbd) prompt, and it tried to startup, but then said > there was no process. Here's a copy & paste:
I suspect your script to run gdb is giving gdb command line arguments. You don't want to do that. You want to start gdb from the command line by only providing the executable name (i.e.... cd /usr/steam/hlds_l gdb srcds_i486 ...you shouldn't need the "./" part before srcds_i486 Then once you get inside gdb, you use "set args" to set the command line arguments that you want to pass to the debugged program. Then use 'r' or 'run' to run the program. See this... http://sources.redhat.com/gdb/current/onlinedocs/gdb_5.html Jeffrey "botman" Broome _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

