RE: Installing JRE on Linux

1999-09-22 Thread Burkhart,Kelly
First, Oracle 8i doesn't work on RH5.1 unless you've upgraded to kernel 2.2 and glibc 2.1. If you're still on the old kernel and glibc install Oracle 8.0.5. I installed 8i on a RH6.0 system with JDK 1.1.7. I made a symbolic link like this: cd /usr/local ln -sf /opt/jdk117 jre I can't remember

RE: Float -> Double conversion bug ?

1999-09-24 Thread Burkhart,Kelly
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 24, 1999 6:58 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Float -> Double conversion bug ? > > > Dear all, > > If I try to put a float into a double variable the last bits of

RE: ¿How do it?

1999-09-27 Thread Burkhart,Kelly
There is no 'CAT' command. There is a 'cat' command. ;-) Unix is case sensitive. To execute a command just type it in. The shell will use the PATH environment variable to find the program you just typed in. (PATH is an environment variable containing a colon separated list of directories).

RE: required Libraries

1999-09-28 Thread Burkhart,Kelly
Isn't libXm the motif lib? Try using the static motif JDK or installing motif. Does the JDK work with lesstif? > -Original Message- > From: Rolf [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 28, 1999 5:26 AM > To: [EMAIL PROTECTED] > Subject: required Libraries > > > Hi, > >

RE: borland/inprise jit for blackdown 1.2pre2

1999-09-28 Thread Burkhart,Kelly
What performance does a JIT improve? Are you talking about the time to run an uncompiled application with this JIT vs. another JIT (i.e. performance improvement is in the JIT compilation not in running the application)? Or are you saying that the compiled code from this JIT is faster than the

RE: reminder - this list is for Java & Linux

1999-10-15 Thread Burkhart,Kelly
> -Original Message- > From: Nicholas Wright [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 15, 1999 4:09 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: reminder - this list is for Java & Linux > > > Hi > > > We've had a lot of discussions on the list recently that

RE: JNI link to disk space

1999-10-20 Thread Burkhart,Kelly
Why is it an ugly solution? Unix apps do this sort of thing frequently. It works fine. > -Original Message- > From: Dustin Lang [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 20, 1999 12:00 PM > To: [EMAIL PROTECTED] > Cc: Java Linux Mailing List > Subject: Re: JNI link to disk s

RE: JNI link to disk space

1999-10-20 Thread Burkhart,Kelly
As soon as he said JNI he eliminated platform independence (at least in the Java sense). > -Original Message- > From: Aaron Mulder [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 20, 1999 3:22 PM > To: Burkhart,Kelly > Cc: 'Dustin Lang'; Java Linux Mailin

RE: dbx

1999-10-22 Thread Burkhart,Kelly
Does gdb work rather than dbx? I have never seen dbx on Linux. Where did you find it? > -Original Message- > From: Raj Patel [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 22, 1999 1:15 PM > To: java-linux Mailing List > Subject: dbx > > > Hi everybody, >

RE: JNI-Linking/loading .so objects used by c code

1999-01-03 Thread Burkhart,Kelly
When you create the shared library with your JNI call do you link it with the shared libraries it requires? Say you have libmyroutine.so and you are trying to create libmyjni.so: g++ --shared ... -o libmyjni.so -L/appropriate/path -lmyroutine Now when you ldd libmyjni.so it should show a depend