public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
* gdb 6.3 with an Abatron BDI2000
@ 2005-04-20 18:14 Shaun Jackman
  2005-04-20 18:22 ` Daniel Jacobowitz
  0 siblings, 1 reply; 6+ messages in thread
From: Shaun Jackman @ 2005-04-20 18:14 UTC (permalink / raw)
  To: gdb

I'm using gdb 6.3 to debug an ARM7TDMI with an Abatron BDI2000, a
device which speaks the gdb remote protocol natively. Loading with gdb
6.3 does not work...

GNU gdb 6.3
(gdb) target remote bdi:2001
Remote debugging using bdi:2001
start () at ../../arch-pathport/pathport-crt0.S:36
36              b       start0
Current language:  auto; currently asm
(gdb) load
Loading section .text, size 0x2ac24 lma 0x2000000
Memory access error while loading section .text.

... but loading with gdb 5.2.1 does work.

GNU gdb 5.2.1
(gdb) target remote bdi:2001
Remote debugging using bdi:2001
0x00000004 in ?? ()
(gdb) load
Loading section .text, size 0x2ac24 lma 0x2000000
Loading section .rodata, size 0x6f48 lma 0x202ac24
Loading section .data, size 0x1818 lma 0x2031c6c
Start address 0x2000000, load size 209796
Transfer rate: 167836 bits/sec, 298 bytes/write.

Any ideas?

Cheers,
Shaun

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

* Re: gdb 6.3 with an Abatron BDI2000
  2005-04-20 18:14 gdb 6.3 with an Abatron BDI2000 Shaun Jackman
@ 2005-04-20 18:22 ` Daniel Jacobowitz
  2005-04-20 21:09   ` gdb 6.3 with an Abatron BDI2000 [RESOLVED] Shaun Jackman
  2005-04-23  2:15   ` gdb 6.3 with an Abatron BDI2000 Shaun Jackman
  0 siblings, 2 replies; 6+ messages in thread
From: Daniel Jacobowitz @ 2005-04-20 18:22 UTC (permalink / raw)
  To: Shaun Jackman; +Cc: gdb

On Wed, Apr 20, 2005 at 11:14:44AM -0700, Shaun Jackman wrote:
> I'm using gdb 6.3 to debug an ARM7TDMI with an Abatron BDI2000, a
> device which speaks the gdb remote protocol natively. Loading with gdb
> 6.3 does not work...
> 
> GNU gdb 6.3
> (gdb) target remote bdi:2001
> Remote debugging using bdi:2001
> start () at ../../arch-pathport/pathport-crt0.S:36
> 36              b       start0
> Current language:  auto; currently asm
> (gdb) load
> Loading section .text, size 0x2ac24 lma 0x2000000
> Memory access error while loading section .text.

Try CVS GDB instead.  This should be fixed.

-- 
Daniel Jacobowitz
CodeSourcery, LLC

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

* Re: gdb 6.3 with an Abatron BDI2000 [RESOLVED]
  2005-04-20 18:22 ` Daniel Jacobowitz
@ 2005-04-20 21:09   ` Shaun Jackman
  2005-04-23  2:15   ` gdb 6.3 with an Abatron BDI2000 Shaun Jackman
  1 sibling, 0 replies; 6+ messages in thread
From: Shaun Jackman @ 2005-04-20 21:09 UTC (permalink / raw)
  To: gdb

Thanks, Daniel! That did the trick. gdb 6.3.50.20050419 does not
exhibit the same problem as gdb 6.3.

Cheers,
Shaun

On 4/20/05, Daniel Jacobowitz <drow@false.org> wrote:
> On Wed, Apr 20, 2005 at 11:14:44AM -0700, Shaun Jackman wrote:
> > I'm using gdb 6.3 to debug an ARM7TDMI with an Abatron BDI2000, a
> > device which speaks the gdb remote protocol natively. Loading with gdb
> > 6.3 does not work...
> >
> > GNU gdb 6.3
> > (gdb) target remote bdi:2001
> > Remote debugging using bdi:2001
> > start () at ../../arch-pathport/pathport-crt0.S:36
> > 36              b       start0
> > Current language:  auto; currently asm
> > (gdb) load
> > Loading section .text, size 0x2ac24 lma 0x2000000
> > Memory access error while loading section .text.
> 
> Try CVS GDB instead.  This should be fixed.
> 
> --
> Daniel Jacobowitz
> CodeSourcery, LLC

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

* Re: gdb 6.3 with an Abatron BDI2000
  2005-04-20 18:22 ` Daniel Jacobowitz
  2005-04-20 21:09   ` gdb 6.3 with an Abatron BDI2000 [RESOLVED] Shaun Jackman
@ 2005-04-23  2:15   ` Shaun Jackman
  2005-04-24 22:33     ` Daniel Jacobowitz
  1 sibling, 1 reply; 6+ messages in thread
From: Shaun Jackman @ 2005-04-23  2:15 UTC (permalink / raw)
  To: gdb

On 4/20/05, Daniel Jacobowitz <drow@false.org> wrote:
> On Wed, Apr 20, 2005 at 11:14:44AM -0700, Shaun Jackman wrote:
> > I'm using gdb 6.3 to debug an ARM7TDMI with an Abatron BDI2000, a
> > device which speaks the gdb remote protocol natively. Loading with gdb
> > 6.3 does not work...
> >
> > GNU gdb 6.3
> > (gdb) target remote bdi:2001
> > Remote debugging using bdi:2001
> > start () at ../../arch-pathport/pathport-crt0.S:36
> > 36              b       start0
> > Current language:  auto; currently asm
> > (gdb) load
> > Loading section .text, size 0x2ac24 lma 0x2000000
> > Memory access error while loading section .text.
> 
> Try CVS GDB instead.  This should be fixed.

Do you know when this bug was introduced? I'd like to try the last
released version of gdb prior to this bug.

Cheers,
Shaun

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

* Re: gdb 6.3 with an Abatron BDI2000
  2005-04-23  2:15   ` gdb 6.3 with an Abatron BDI2000 Shaun Jackman
@ 2005-04-24 22:33     ` Daniel Jacobowitz
  2005-07-07 20:36       ` gdb 6.3 with an Abatron BDI2000 [RESOLVED] Shaun Jackman
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Jacobowitz @ 2005-04-24 22:33 UTC (permalink / raw)
  To: Shaun Jackman; +Cc: gdb

On Fri, Apr 22, 2005 at 07:14:43PM -0700, Shaun Jackman wrote:
> On 4/20/05, Daniel Jacobowitz <drow@false.org> wrote:
> > On Wed, Apr 20, 2005 at 11:14:44AM -0700, Shaun Jackman wrote:
> > > I'm using gdb 6.3 to debug an ARM7TDMI with an Abatron BDI2000, a
> > > device which speaks the gdb remote protocol natively. Loading with gdb
> > > 6.3 does not work...
> > >
> > > GNU gdb 6.3
> > > (gdb) target remote bdi:2001
> > > Remote debugging using bdi:2001
> > > start () at ../../arch-pathport/pathport-crt0.S:36
> > > 36              b       start0
> > > Current language:  auto; currently asm
> > > (gdb) load
> > > Loading section .text, size 0x2ac24 lma 0x2000000
> > > Memory access error while loading section .text.
> > 
> > Try CVS GDB instead.  This should be fixed.
> 
> Do you know when this bug was introduced? I'd like to try the last
> released version of gdb prior to this bug.

Not sure.  Probably 6.2 is OK.

-- 
Daniel Jacobowitz
CodeSourcery, LLC

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

* Re: gdb 6.3 with an Abatron BDI2000 [RESOLVED]
  2005-04-24 22:33     ` Daniel Jacobowitz
@ 2005-07-07 20:36       ` Shaun Jackman
  0 siblings, 0 replies; 6+ messages in thread
From: Shaun Jackman @ 2005-07-07 20:36 UTC (permalink / raw)
  To: gdb

> > > > I'm using gdb 6.3 to debug an ARM7TDMI with an Abatron BDI2000, a
> > > > device which speaks the gdb remote protocol natively. Loading with gdb
> > > > 6.3 does not work...
...
> > > > (gdb) load
> > > > Loading section .text, size 0x2ac24 lma 0x2000000
> > > > Memory access error while loading section .text.
> > >
> > > Try CVS GDB instead.  This should be fixed.
> >
> > Do you know when this bug was introduced? I'd like to try the last
> > released version of gdb prior to this bug.
> 
> Not sure.  Probably 6.2 is OK.

Just for the mail archives, I've had no trouble using gdb 6.2.1 for
arm-elf with my Abatron BDI2000.

Cheers,
Shaun

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

end of thread, other threads:[~2005-07-07 20:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-20 18:14 gdb 6.3 with an Abatron BDI2000 Shaun Jackman
2005-04-20 18:22 ` Daniel Jacobowitz
2005-04-20 21:09   ` gdb 6.3 with an Abatron BDI2000 [RESOLVED] Shaun Jackman
2005-04-23  2:15   ` gdb 6.3 with an Abatron BDI2000 Shaun Jackman
2005-04-24 22:33     ` Daniel Jacobowitz
2005-07-07 20:36       ` gdb 6.3 with an Abatron BDI2000 [RESOLVED] Shaun Jackman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).