Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* How to tell gdb to exit?
@ 2004-05-06 15:50 Grant Edwards
  2004-05-06 16:09 ` Grant Edwards
  2004-05-06 16:10 ` Daniel Jacobowitz
  0 siblings, 2 replies; 10+ messages in thread
From: Grant Edwards @ 2004-05-06 15:50 UTC (permalink / raw)
  To: gdb


I'm trying to figure out how to run gdb from a shell script,
and everything works, except I can't get gdb to exit.  What I
want to do is:

 1) set target to /dev/ttyS0
 2) load an elf file
 3) start it (continue)
 4) exit gdb

Steps 1-3 work great, but at step 4) gdb won't accept a new
command in human-interface mode, so this doesn't work:

  #!/bin/bash
  h8300-elf-gdb <<EOF
  set arch h8300h
  target remote /dev/ttyS0
  load test.elf
  cont
  quit
  EOF

I tried "detach" instead of "cont" since the info file says
that it continues exection, but it doesn't actual seem to do
that for remote targets.

  
In MI mode, I can't figure out what the "quit" command is, and
it just hangs on EOF -- so this doesn't work either:

  #!/bin/bash
  h8300-elf-gdb -interpreter=mi <<EOF
  10-target-select async /dev/ttyS0
  20-target-download test.elf
  30-exec-continue
  EOF

I'm sure I'm missing an obvious clue, could somebody point it
out to me?
  
-- 
Grant Edwards
grante@visi.com


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2004-05-06 19:14 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-06 15:50 How to tell gdb to exit? Grant Edwards
2004-05-06 16:09 ` Grant Edwards
2004-05-06 16:16   ` Grant Edwards
2004-05-06 16:18     ` Daniel Jacobowitz
2004-05-06 16:35       ` Grant Edwards
2004-05-06 19:14         ` Daniel Jacobowitz
2004-05-06 18:36     ` Ian Lance Taylor
2004-05-06 18:42       ` Grant Edwards
2004-05-06 16:10 ` Daniel Jacobowitz
2004-05-06 16:11   ` Grant Edwards

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox