[kaffe] -O1 or -O2 (was Re: m68k-ecos)

2005-12-07 Thread Kiyo Inaba
I wrote: and the reason why I put -O1 in spite of -O2 is -O1 makes firster executables than -O2 (if I remember correctly). I tested -O1 and -O2 against latest snap, and the elapsed time needed for 'make Check' (m68k/netbsd/jit3) are -O1: 10:06:34 -O2: 10:41:15 Of course, this includes

[kaffe] Bug: Kaffe doesn't work with GMP on x86_64

2005-12-07 Thread Alan Eliasen
I really like using Kaffe as my JVM for working with really big numbers, as it can be compiled to use the GMP library. It makes certain programs that work with really big integers run thousands of times faster than any other JVM. I was really excited about running it on the x86_64 with

Re: [kaffe] Bug: Kaffe doesn't work with GMP on x86_64

2005-12-07 Thread Alan Eliasen
Alan Eliasen wrote: When run with: kaffe -Xnative-big-math BigIntTest it produces: Fits in long 4294967292 18446744073709551612 Which is incorrect. The BigInteger has the wrong value. FYI, here are the binary and hexadecimal conversions for the above. These are done using my

[kaffe] libraries/javalib/external/classpath/doc/*.info files are missing

2005-12-07 Thread Ito Kazumitsu
Hi, The building of recent CVS version fails with the following message. hacking.texinfo:16: Unknown command `ifnotplaintext'. hacking.texinfo:22: Bad argument to `end', `ifnotplaintext', using `ifinfo'. hacking.texinfo:22: Unmatched [EMAIL PROTECTED]'. makeinfo: Removing output file

Re: [kaffe] libraries/javalib/external/classpath/doc/*.info files are missing

2005-12-07 Thread Kiyo Inaba
Hi Kaz, The building of recent CVS version fails with the following message. You met same problem as I faced (and reported titled 'build failure for nb1.6') several days ago. | However, all GNU distributions should come with prebuilt info files, | thus makeinfo should not be needed. If you

Re: [kaffe] libraries/javalib/external/classpath/doc/*.info files are missing

2005-12-07 Thread Ito Kazumitsu
Hi Kiyo, The building of recent CVS version fails with the following message. You met same problem as I faced (and reported titled 'build failure for nb1.6') several days ago. Sorry for missing your message. I did not think that would be a problem to me. | However, all GNU distributions

[kaffe] CVS kaffe (robilad): Fixed jar and appletviewer scripts

2005-12-07 Thread Kaffe CVS
PatchSet 6988 Date: 2005/12/08 00:52:58 Author: robilad Branch: HEAD Tag: (none) Log: Fixed jar and appletviewer scripts 2005-12-08 Dalibor Topic [EMAIL PROTECTED] * kaffe/scripts/appletviewer.in, kaffe/scripts/jar.in: Fixed to look for kaffe specific classes in right

Re: [kaffe] libraries/javalib/external/classpath/doc/*.info files are missing

2005-12-07 Thread Dalibor Topic
Ito Kazumitsu wrote: Hi Kiyo, The building of recent CVS version fails with the following message. You met same problem as I faced (and reported titled 'build failure for nb1.6') several days ago. Sorry for missing your message. I did not think that would be a problem to me. Same

[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath

2005-12-07 Thread Kaffe CVS
PatchSet 6989 Date: 2005/12/08 01:50:17 Author: robilad Branch: HEAD Tag: (none) Log: Resynced with GNU Classpath Members: ChangeLog:1.4510-1.4511 libraries/javalib/external/classpath/ChangeLog:1.4-1.5 libraries/javalib/external/classpath/Makefile.in:1.3-1.4

[kaffe] ecj-compiled kaffe fails in regression tests

2005-12-07 Thread Ito Kazumitsu
Using the following poor man's ecj, $ cat bin/ecj #!/bin/sh exec /usr/local/kaffe/bin/kaffe \ -classpath $HOME/javalib/org.eclipse.jdt.core_3.1.1.jar \ org.eclipse.jdt.internal.compiler.batch.Main \ $@ I could make kaffe from kaffe-snapshot-20051206.tar.gz from

Re: [kaffe] ecj-compiled kaffe fails in regression tests

2005-12-07 Thread Kiyo Inaba
Hi Kaz, Using the following poor man's ecj, $ cat bin/ecj #!/bin/sh exec /usr/local/kaffe/bin/kaffe \ -classpath $HOME/javalib/org.eclipse.jdt.core_3.1.1.jar \ org.eclipse.jdt.internal.compiler.batch.Main \ $@ That's a good news! Could you please add something in