Re: Porting GNU Projects - Guile

2009-07-29 Thread bornlibra23
Thanks Mike for the heads up but the problem I think is with the source code itself. I get the same error on linux though it doesnt die there. I preprocessed the code & changed the line like so : >From (ch) == ' ' | (ch) == '\t') to (ch) == ' ' || (ch) == '\t') (note the or operator) & the

Re: Elisp performance

2009-07-29 Thread Ken Raeburn
On Jul 29, 2009, at 08:50, Daniel Kraft wrote: Iterative prime sieve, (length (find-primes-to 5000)): Scheme: 0.42s Elisp, no void checks, lexical let: 3.40s Elisp, no void checks, dynamic let: 4.43s Elisp, void checks, dynamic let: 5.12s Elisp, void checks, lexical let: 4.06s It doesn't m

Re: Porting GNU Projects - Guile

2009-07-29 Thread Mike Gran
> From: bornlibra23 > > Hello People > I am trying to port various GNU products to Stratus OpenVOS platform > including the guile project. However I am stuck currently for the lack of > wide & multibyte character support. Can somebody guide me to an > implementation of the same that I can port f

Porting GNU Projects - Guile

2009-07-29 Thread bornlibra23
Hello People I am trying to port various GNU products to Stratus OpenVOS platform including the guile project. However I am stuck currently for the lack of wide & multibyte character support. Can somebody guide me to an implementation of the same that I can port first. The glibc is also proving a

Elisp performance

2009-07-29 Thread Daniel Kraft
Hi all, as promised, here are some performance results for the current elisp compiler. BTW, it supports now to disable checks for void-value on variable access via compiler options as well as the lexical-let/lexical-let* constructs that should mimic the ones from emacs' cl package (but in em