[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: updated to new system property handling mechanism,

2004-12-07 Thread Kaffe CVS
PatchSet 5563 Date: 2004/12/08 07:22:01 Author: robilad Branch: HEAD Tag: (none) Log: Resynced with GNU Classpath: updated to new system property handling mechanism, and partially merged in java.lang.System Members: ChangeLog:1.3109->1.3110 include/Makefile.am:1.78->1.79

[kaffe] Re: Compiling with static failed.

2004-12-07 Thread Kiyo Inaba
Hi Dalibor, >thanks for reporting it. I think I have fixed it with Oh, sorry. I did not carefully read CVS report. It may fix my problem. Kiyo ___ kaffe mailing list [EMAIL PROTECTED] http://kaffe.org/cgi-bin/mailman/listinfo/kaffe

Re: [kaffe] Compiling with static failed.

2004-12-07 Thread Dalibor Topic
Kiyo Inaba wrote: Hi, Latest snap was failed to be compiled on ia32/linux with configuration --with-staticbin --with-staticlib --with-staticvm --enable-pure-java-math --disable-sound --without-x --disable-native-awt --disable-shared --with-engine=jit3 And the error m

[kaffe] Compiling with static failed.

2004-12-07 Thread Kiyo Inaba
Hi, Latest snap was failed to be compiled on ia32/linux with configuration --with-staticbin --with-staticlib --with-staticvm --enable-pure-java-math --disable-sound --without-x --disable-native-awt --disable-shared --with-engine=jit3 And the error message at link t

Re: [kaffe] CVS kaffe (kaz): libltdl/install-sh:

2004-12-07 Thread Dalibor Topic
Ito Kazumitsu wrote: In message "[kaffe] CVS kaffe (kaz): libltdl/install-sh:" on 04/12/07, Kaffe CVS <[EMAIL PROTECTED]> writes: 2004-12-07 Ito Kazumitsu <[EMAIL PROTECTED]> * libltdl/install-sh: Made it executable (chmod +x). Can the file permission be changed through cvs? K

[kaffe] CVS kaffe (doogie): The java spec allows for buffering when doing encoding conversions. This

2004-12-07 Thread Kaffe CVS
PatchSet 5562 Date: 2004/12/08 00:45:12 Author: doogie Branch: HEAD Tag: (none) Log: The java spec allows for buffering when doing encoding conversions. This change does internal buffering in these classes, for a huge speedup. Members: ChangeLog:1.3108->1.3109 libraries/javali

Re: [kaffe] HUGE speedup in KaffeEncoder/KaffeDecoder

2004-12-07 Thread Dalibor Topic
Ito Kazumitsu wrote: "A" == Adam Heath <[EMAIL PROTECTED]> writes: A> With my fix in place, and a dump loop reading(or writing) one char at time, I A> saw a read increase of 200 fold(200 times!), and a write increase of 90 fold. A> The stupid version of my parser saw a 25 fold increase. A> ps: I d

Re: [kaffe] CVS kaffe (kaz): libltdl/install-sh:

2004-12-07 Thread Ito Kazumitsu
In message "[kaffe] CVS kaffe (kaz): libltdl/install-sh:" on 04/12/07, Kaffe CVS <[EMAIL PROTECTED]> writes: > 2004-12-07 Ito Kazumitsu <[EMAIL PROTECTED]> > > * libltdl/install-sh: > Made it executable (chmod +x). Can the file permission be changed through cvs? _

[kaffe] library problem on darwin6

2004-12-07 Thread Riccardo
Hey, eager to check guilhem's patches, I updated to CVS and built stright away a pthread build. It compiles but fails: Compiling classes from @all.files using /Users/multix/kaffe-cvs/ darwin-intrp/kaffe/kaffe/kaffe-bin -verbosegc -ss 500k -mx 512M at.dms. kjc.Main Internal error: caught an u

[kaffe] chmod +x libltdl/install-sh

2004-12-07 Thread Ito Kazumitsu
Hi, I needed to chmod +x libltdl/install-sh because "make install" on FreeBSD 5.3-RELEASE tries to execute it instead of "mkdir -p". But why should libltdl/install-sh be executed when "mkdir -p" can be used? Because the behaviour of mkdir of FreeBSD has changed and configure cannot detect it.

[kaffe] CVS kaffe (kaz): libltdl/install-sh:

2004-12-07 Thread Kaffe CVS
PatchSet 5561 Date: 2004/12/07 22:06:12 Author: kaz Branch: HEAD Tag: (none) Log: 2004-12-07 Ito Kazumitsu <[EMAIL PROTECTED]> * libltdl/install-sh: Made it executable (chmod +x). Members: ChangeLog:1.3107->1.3108 libltdl/install-sh:1.7->1.8 Index: kaffe/Ch

Re: [kaffe] HUGE speedup in KaffeEncoder/KaffeDecoder

2004-12-07 Thread Ito Kazumitsu
> "A" == Adam Heath <[EMAIL PROTECTED]> writes: A> With my fix in place, and a dump loop reading(or writing) one char at time, I A> saw a read increase of 200 fold(200 times!), and a write increase of 90 fold. A> The stupid version of my parser saw a 25 fold increase. A> ps: I do have commit

Re: [kaffe] CVS kaffe (robilad): Use pure java XSLT engine by default

2004-12-07 Thread Mark Wielaard
Hi, On Tue, 2004-12-07 at 08:59, Mark Wielaard wrote: > Trying to work around this you will at least have to deal with the > Writer problem yet again. Sigh. Patch attached. > > After that I am currently stuck unfortunately. > Will try to debug some more tonight. Chris already made a couple of ch

[kaffe] BUG: ArrayStoreException when storing arrays in multi-dimensional arrays

2004-12-07 Thread Mark Wielaard
Hi, The following program: public class Test { static final char[] initCharArray = new char[] {'\u', '\u', '\u', '\u', '\u', '\u'}; public static final char[][][][] charArray_length = new char[1][1][1][]; public static void main(String[] args) { ch

[kaffe] Re: Is ALIGN_CODEPC needed?

2004-12-07 Thread Dalibor Topic
Kiyo Inaba wrote: Since Dalibor was out of town when I sent original message, I'd like to resend with more detailed info for this issue. I wrote: In 'kaffe/kaffevm/jit3/funcs.c' a macro 'ALIGN_CODEPC' is defined. But as far as grep can tell, it has never been used. Is this macro really needed? K

Re: [kaffe] CVS kaffe (robilad): Use pure java XSLT engine by default

2004-12-07 Thread Mark Wielaard
Hi, On Tue, 2004-12-07 at 01:58, Kaffe CVS wrote: > 2004-12-06 Dalibor Topic <[EMAIL PROTECTED]> > > * libraries/javalib/javax/xml/transform/TransformerFactory.java: > Use gnu.xml.transform.TransformerFactoryImpl as the default > transformer instead of libxmlj one. > >