[kaffe] kaffe installation

2003-03-28 Thread Eashwar Natarajan
hai everyone, I am new to this group, kaffe jvm and mandrake linux. I have problems in installing kaffe in mandrake linux 9.0 by (steps ./configure, make and make install). i get syntax errors in the make step for ex( O_RDONLY not defined, ... not defined ,...not defined etc). i got these errors

Re: [kaffe] kaffe installation

2003-03-28 Thread Matthew Tippett
Discovered a similar problem on a MIPS embedded system. Looking at config.log, it looks like it can't find cpp - it is looking in /lib/cpp for me. (Which obviously is wrong). By any chance are you using gcc-3.2? The workaround that I did was add a symbolic link from /usr/bin/cpp to /lib/cpp

[kaffe] Bug [CVS version]: Calling non-implemented method in abstract class

2003-03-28 Thread Benja Fallenstein
Hi all, The following code: --- snip --- public class Bug { interface Interface { void foo(); } static abstract class Abstract implements Interface { public void bug() { foo(); } } static class Impl extends Abstract { public void foo() {} }

Re: [kaffe] Bug [CVS version]: Calling non-implemented method in abstract class

2003-03-28 Thread Timothy Stack
Hi all, hi, The following code: --- snip --- gives me the following error: [EMAIL PROTECTED]:~/ff/fenfire$ /usr/local/kaffe/bin/kaffe -cp build Bug java.lang.NoSuchMethodError: Bug$Abstract.foo()V at Bug$Abstract.bug(source file unknown:line unknown, pc 0x81ff788)

Re: [kaffe] Bug [CVS version]: Calling non-implemented method inabstract class

2003-03-28 Thread Benja Fallenstein
Hi Tim, Timothy Stack wrote: Yeah, I ran into this a little while ago and fixed it in the JanosVM. Its actually because of a change in jikes, which is legal, but not handled correctly in Kaffe. Actually, AFAIK this was compiled not with jikes, but the javac in Sun's 1.4 (invoked through ant).