public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* a plea for mercy
@ 2001-06-18 16:07 Steve_Witt
  2001-06-19  7:39 ` Christopher Faylor
  2001-06-19  8:27 ` a plea for mercy Tom Tromey
  0 siblings, 2 replies; 9+ messages in thread
From: Steve_Witt @ 2001-06-18 16:07 UTC (permalink / raw)
  To: insight

FOR GOD'S SAKE, PLEASE REMOVE ME FROM THIS LIST!!!
I have tried and tried, but it still keeps coming! HEEEEEEELP!

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

* Re: a plea for mercy
  2001-06-18 16:07 a plea for mercy Steve_Witt
@ 2001-06-19  7:39 ` Christopher Faylor
  2001-06-19 14:22   ` cvs checkout bciceron
  2001-06-19 15:06   ` how to dbg a java pgm ? bciceron
  2001-06-19  8:27 ` a plea for mercy Tom Tromey
  1 sibling, 2 replies; 9+ messages in thread
From: Christopher Faylor @ 2001-06-19  7:39 UTC (permalink / raw)
  To: Steve_Witt; +Cc: insight

On Mon, Jun 18, 2001 at 06:08:15PM -0500, Steve_Witt@nmss.com wrote:
>FOR GOD'S SAKE, PLEASE REMOVE ME FROM THIS LIST!!!
>I have tried and tried, but it still keeps coming! HEEEEEEELP!

For anyone else with similar problems, I would suggest going to
http://sources.redhat.com and clicking on the "Mailing Lists"
entry.  There is a link at the very top of the page which deals
with unsubscribe problems.

In general, if you can't figure out how to unsubscribe using the method
on the web, then it will be a chore for a sources.redhat.com sysadmin to
figure out how to unsubscribe you, too.  However, following the
instructions on this page, you should be able to unsubscribe yourself in
99.99999% of cases.

cgf

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

* Re: a plea for mercy
  2001-06-18 16:07 a plea for mercy Steve_Witt
  2001-06-19  7:39 ` Christopher Faylor
@ 2001-06-19  8:27 ` Tom Tromey
  1 sibling, 0 replies; 9+ messages in thread
From: Tom Tromey @ 2001-06-19  8:27 UTC (permalink / raw)
  To: Steve_Witt; +Cc: insight

>>>>> "Steve" == Steve Witt <Steve_Witt@nmss.com> writes:

Steve> FOR GOD'S SAKE, PLEASE REMOVE ME FROM THIS LIST!!!
Steve> I have tried and tried, but it still keeps coming! HEEEEEEELP!

Every single message you get from this list has unsubscribe
information in the header.  Also, there is an unsubscribe form on the
insight web page.

    http://sources.redhat.com/insight/mailinglist.htm

Have you tried either of these?

Tom

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

* cvs checkout
  2001-06-19  7:39 ` Christopher Faylor
@ 2001-06-19 14:22   ` bciceron
  2001-06-20 10:03     ` Keith Seitz
  2001-06-19 15:06   ` how to dbg a java pgm ? bciceron
  1 sibling, 1 reply; 9+ messages in thread
From: bciceron @ 2001-06-19 14:22 UTC (permalink / raw)
  To: insight

hello,

i cannot find a way to check out a file from cvs if the object is not
already added to the project , am i right ?

if so this means i have to check out an entire module from cvs then create
a project for Insight (a GREAT product BTW) then add it .

i was expecting to check out from cvs with Insight then add...

regards,
ben

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

* how to dbg a java pgm ?
  2001-06-19  7:39 ` Christopher Faylor
  2001-06-19 14:22   ` cvs checkout bciceron
@ 2001-06-19 15:06   ` bciceron
  2001-06-20  9:32     ` Tom Tromey
  1 sibling, 1 reply; 9+ messages in thread
From: bciceron @ 2001-06-19 15:06 UTC (permalink / raw)
  To: insight

hello,

i cannot figure out how to dbg java program :-(

i force the language with :
set language java
but
using the .class is not the right format obviously.

should i use --interpreter=? when i build gdb/insight or at run time when
i dbg ?
what it the arg? /usr/java/bin/java or just java ?

or what else , please ?

a short exemple would clarify.

thx,
ben-


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

* Re: how to dbg a java pgm ?
  2001-06-19 15:06   ` how to dbg a java pgm ? bciceron
@ 2001-06-20  9:32     ` Tom Tromey
  2001-06-20 11:48       ` bciceron
  0 siblings, 1 reply; 9+ messages in thread
From: Tom Tromey @ 2001-06-20  9:32 UTC (permalink / raw)
  To: bciceron; +Cc: insight

>>>>> "ben" == bciceron  <bciceron@rsn.hp.com> writes:

ben> i cannot figure out how to dbg java program :-(

ben> i force the language with :
ben> set language java
ben> but
ben> using the .class is not the right format obviously.

This is only useful if you are debugging a Java program compiled with
`gcj' to native code.  You can't debug interpreted Java programs with
this.  In fact you can't debug interpreted Java programs with gdb at
all.  (You can debug the interpreter, but that is different.)

Once upon a time there was code around to let gdb use JVMDI to debug
interpreted Java programs.  However, due to a logistical snafu, this
code isn't in the main line of gdb and I'm told it would be a lot of
work to reintegrate it.

Tom

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

* Re: cvs checkout
  2001-06-19 14:22   ` cvs checkout bciceron
@ 2001-06-20 10:03     ` Keith Seitz
  0 siblings, 0 replies; 9+ messages in thread
From: Keith Seitz @ 2001-06-20 10:03 UTC (permalink / raw)
  To: bciceron; +Cc: insight

On Tue, 19 Jun 2001 bciceron@rsn.hp.com wrote:

> hello,
>
> i cannot find a way to check out a file from cvs if the object is not
> already added to the project , am i right ?

Huh? I'm afraid I don't understand what you're trying to do. Could you
explain to me what you want?

Keith


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

* Re: how to dbg a java pgm ?
  2001-06-20  9:32     ` Tom Tromey
@ 2001-06-20 11:48       ` bciceron
  2001-06-20 12:00         ` Tom Tromey
  0 siblings, 1 reply; 9+ messages in thread
From: bciceron @ 2001-06-20 11:48 UTC (permalink / raw)
  To: Tom Tromey; +Cc: insight

hi tom,

so once i use gcj to compile we have access to the full gdb features as
any other language ?

thx,

On 20 Jun 2001, Tom Tromey wrote:

-- >>>>> "ben" == bciceron  <bciceron@rsn.hp.com> writes:
-- 
-- ben> i cannot figure out how to dbg java program :-(
-- 
-- ben> i force the language with :
-- ben> set language java
-- ben> but
-- ben> using the .class is not the right format obviously.
-- 
-- This is only useful if you are debugging a Java program compiled with
-- `gcj' to native code.  You can't debug interpreted Java programs with
-- this.  In fact you can't debug interpreted Java programs with gdb at
-- all.  (You can debug the interpreter, but that is different.)
-- 
-- Once upon a time there was code around to let gdb use JVMDI to debug
-- interpreted Java programs.  However, due to a logistical snafu, this
-- code isn't in the main line of gdb and I'm told it would be a lot of
-- work to reintegrate it.
-- 
-- Tom
-- 

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

* Re: how to dbg a java pgm ?
  2001-06-20 11:48       ` bciceron
@ 2001-06-20 12:00         ` Tom Tromey
  0 siblings, 0 replies; 9+ messages in thread
From: Tom Tromey @ 2001-06-20 12:00 UTC (permalink / raw)
  To: bciceron; +Cc: insight

>>>>> ">" == bciceron  <bciceron@rsn.hp.com> writes:

>> so once i use gcj to compile we have access to the full gdb
>> features as any other language ?

Not really :-(.

gdb used to work `ok' with gcj.  However this was broken by the recent
ABI changes in gcc 3.0 -- the corresponding C++ changes in gdb broke
the Java support.  Nobody has had time to fix this.  Bleah.

Even when it did work, you could only use a subset of gdb features
with gcj-compiled Java.  You could print values (including Java String
objects), set breakpoints, and the like.  But you couldn't call a Java
method from gdb.

It would be nice if somebody had the time to fix these problems.
Unfortunately, I don't, at least not right now.

Tom

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

end of thread, other threads:[~2001-06-20 12:00 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-06-18 16:07 a plea for mercy Steve_Witt
2001-06-19  7:39 ` Christopher Faylor
2001-06-19 14:22   ` cvs checkout bciceron
2001-06-20 10:03     ` Keith Seitz
2001-06-19 15:06   ` how to dbg a java pgm ? bciceron
2001-06-20  9:32     ` Tom Tromey
2001-06-20 11:48       ` bciceron
2001-06-20 12:00         ` Tom Tromey
2001-06-19  8:27 ` a plea for mercy Tom Tromey

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).