Re: [HS] problem with gdb

2002-04-11 Thread Per Bothner
Robert Bihlmeyer wrote: Shouldn't 'print System.out.println(token)' work too? It should - but it isn't implemented. I made a start at implementing method invocation. In fact, I have a bunch of gdb patches I haven't gotten around to checking in. If people want to check my patches, I'd like to kno

Re: [HS] problem with gdb

2002-04-11 Thread Robert Bihlmeyer
Tom Tromey <[EMAIL PROTECTED]> writes: > Try `print *token'. > > In some versions of gdb printing a String worked. It seems to have > stopped working at some point. The real problem is that nobody is > actively working on the gdb Java support :-( Shouldn't 'print System.out.println(token)' wor

Re: [HS] problem with gdb

2002-04-11 Thread Per Bothner
Robert Bihlmeyer wrote: > Shouldn't 'print System.out.println(token)' work too? It should - but it isn't implemented. I made a start at implementing method invocation. In fact, I have a bunch of gdb patches I haven't gotten around to checking in. If people want to check my patches, I'd like to

Re: [HS] problem with gdb

2002-04-11 Thread Robert Bihlmeyer
Tom Tromey <[EMAIL PROTECTED]> writes: > Try `print *token'. > > In some versions of gdb printing a String worked. It seems to have > stopped working at some point. The real problem is that nobody is > actively working on the gdb Java support :-( Shouldn't 'print System.out.println(token)' wo

Re: [HS] problem with gdb

2002-04-11 Thread Damien
Le jeu 11/04/2002 à 02:50, Tom Tromey a écrit : > In some versions of gdb printing a String worked. It seems to have > stopped working at some point. The real problem is that nobody is > actively working on the gdb Java support :-( > > Tom > this is sad because jdb sucks... -- To UNSUBSCRIBE,

Re: [HS] problem with gdb

2002-04-11 Thread Damien
Le jeu 11/04/2002 à 02:50, Tom Tromey a écrit : > In some versions of gdb printing a String worked. It seems to have > stopped working at some point. The real problem is that nobody is > actively working on the gdb Java support :-( > > Tom > this is sad because jdb sucks... -- To UNSUBSCRIBE

Re: [HS] problem with gdb

2002-04-10 Thread Tom Tromey
> "Damien" == Damien <[EMAIL PROTECTED]> writes: Damien> Whe using gdb, I cannot print java.lang.String type object, I get this: Damien> (gdb) print token Damien> $19 = [EMAIL PROTECTED] Damien> It seems this is because token is a reference to a string, but Damien> I cannot find a way to pri

[HS] problem with gdb

2002-04-10 Thread Damien
Hello, Maybe someone here knows an answer to my question... I'm compiling an app with gcj -g ... Whe using gdb, I cannot print java.lang.String type object, I get this: (gdb) print token $19 = [EMAIL PROTECTED] It seems this is because token is a reference to a string, but I cannot find a way

Re: [HS] problem with gdb

2002-04-10 Thread Tom Tromey
> "Damien" == Damien <[EMAIL PROTECTED]> writes: Damien> Whe using gdb, I cannot print java.lang.String type object, I get this: Damien> (gdb) print token Damien> $19 = java.lang.String@80c88a0 Damien> It seems this is because token is a reference to a string, but Damien> I cannot find a wa

[HS] problem with gdb

2002-04-10 Thread Damien
Hello, Maybe someone here knows an answer to my question... I'm compiling an app with gcj -g ... Whe using gdb, I cannot print java.lang.String type object, I get this: (gdb) print token $19 = java.lang.String@80c88a0 It seems this is because token is a reference to a string, but I cannot fi