[kaffe] Help needed to install Kaffe binary on ARM processor

2002-05-02 Thread Uday Mohan
HI, I downloaded the binary of kaffe from the web site.it was in rpm format. So I ran alien and converted it to tar format and copied it to my ipaq.there I untarred it and installed the binary. But when I run java or javac it says.. /usr/bin/kaffe: /usr/bin/Kaffe: No such file or directory /usr/

Re: [kaffe] bootclassloader vs. SystemClassLoader problems

2002-05-02 Thread Godmar Back
> > Any objections, ideas, questions? > The current kaffe implements JDK 1.1 class loader semantics, because some legacy applications relied on that. I think it should be okay now to implement 1.2 semantics with application-specific classloaders and separate bootclasspath and application class

Re: [kaffe] How to Compile?

2002-05-02 Thread Dalibor Topic
hi Partha, --- Parthasarathy G <[EMAIL PROTECTED]> wrote: > Hi, > > First it did not have execute permission so changed > the permission to +x. Looks like your checkout did not work. Could you please try to check out kaffe again and see if it works. I just checked out the source and the execute

Re: [kaffe] How to Compile?

2002-05-02 Thread Parthasarathy G
Hi, First it did not have execute permission so changed the permission to +x. Then I ran the script and got the following error [gpartha@javaspace bleeding]$ ./configure : command not found '/configure: line 41: syntax error near unexpected token `in '/configure: line 41: ` case X$UNAME in Par

Re: [kaffe] Compiling w/jikes or kjc

2002-05-02 Thread Dalibor Topic
Hi James, --- James Walker <[EMAIL PROTECTED]> wrote: > I have Jikes and Kaffe installed on RH 7.2. When > ever I try to compile code with the line 'import > javax.swing.JOptionPane in it, I get a message > saying that 'javax/swing/JOptionPane is not defined, > etc. How do I point the compilers

Re: [kaffe] How to Compile?

2002-05-02 Thread Dalibor Topic
Hi Partha, --- Parthasarathy G <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to compile it on Linux 7.0, Kernel > 2.2.16-22 on i686. thanks, now the remaining questions are: * how do you run the configure script? Please post what you typed into the shell to run the configure script. * why

Re: [kaffe] How to Compile?

2002-05-02 Thread Parthasarathy G
Hi, I am trying to compile it on Linux 7.0, Kernel 2.2.16-22 on i686. Partha - "Attitude Matters" Parthasarathy G Technology Development Center - HomeNet Wipro Technologies, E&I - Original Message - From: "Dalibor Topic" <[EMA

Re: [kaffe] How to Compile?

2002-05-02 Thread Dalibor Topic
Hi Partha, --- Parthasarathy G <[EMAIL PROTECTED]> wrote: > I just took the bleeding version from CVS, now how > to I compile? Tried > ./configure it is not working. Is there is any > readme point to it. thank you for your bug report. In order to be able to help you, I need more details. I'd lik

[kaffe] How to Compile?

2002-05-02 Thread Parthasarathy G
Hi, I just took the bleeding version from CVS, now how to I compile? Tried ./configure it is not working. Is there is any readme point to it. Thanks in advance, Partha - "Attitude Matters" Parthasarathy G Technology Development Center

[kaffe] bootclassloader vs. SystemClassLoader problems

2002-05-02 Thread Dalibor Topic
Hi, I've implemented a good deal of support for Packages. The only problem I am experiencing with my code is: kaffe seems to load most stuff with the boot class loader, thus I can't record any useful package information in the SystemClassLoader. Here is a small example program: public class Te