RE: getting line numbers instead of (compiled code)

2001-04-18 Thread Randy Layman
You are getting "Compiled Code" because the JIT engine has compiled your code into machine native format and it can't trace back to a line of .java code. I thought there was a command line option like -nojit, but checking just now I can't seem to remember how to figure it out.

RE: getting line numbers instead of (compiled code)

2001-04-18 Thread CPC Livelink Admin
:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 12:31 PM To: [EMAIL PROTECTED] Subject: RE: getting line numbers instead of (compiled code) You are getting "Compiled Code" because the JIT engine has compiled your code into machine native format and it can't trace back

Re: getting line numbers instead of (compiled code)

2001-04-18 Thread Christoph Kukulies
On Wed, Apr 18, 2001 at 02:05:59PM -0400, CPC Livelink Admin wrote: set an environment variable to disable to compiler - I can never remember which one of these two it is, so I just set both (DOS example) : I looked in bin/tomcat.sh where java is started and tried with -nojit but my java

Re: getting line numbers instead of (compiled code)

2001-04-18 Thread Jeff Kilbride
Set an environment variable called JAVA_COMPILER to NONE. SET JAVA_COMPILER=NONE This will turn off the jit compiler. --jeff - Original Message - From: "Christoph Kukulies" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 9:16 AM Subject: getting line numbers

RE: getting line numbers instead of (compiled code)

2001-04-18 Thread Darrell Porter
But doesn't BSD stand for Basic Standard DOS ? smirk Darrell -Original Message- From: Christoph Kukulies [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 11:44 AM To: [EMAIL PROTECTED] Subject: Re: getting line numbers instead of (compiled code) On Wed, Apr 18, 2001 at 02

Re: getting line numbers instead of (compiled code)

2001-04-18 Thread Christoph Kukulies
, and life is good. -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 12:31 PM To: [EMAIL PROTECTED] Subject: RE: getting line numbers instead of (compiled code) You are getting "Compiled Code" because the JIT