Re: Pre-compiled picolisp for CentOS, Cygwin, OSX

2013-11-03 Thread Keith Kim
For Cygwin version, cygwin DLLs are included, thus it runs in command window also. I haven't check all the functionalities though. The reason I uploaded binaries is that new users usually prefer downloading runnable binaries and test things quickly, otherwise many of them will just turn away. I'

Re: Pre-compiled picolisp for CentOS, Cygwin, OSX

2013-11-03 Thread Jon Kleiser
Hi, Yes, on my Mac I get : *CPU -> "emu" Sorry, I had completely forgotten about the "emu". ;-) /Jon > Hi Jon, Keith, > >> I've done some more testing of your 64-bit PicoLisp on my old MacBook >> Air, >> ... >> : (== 64 64) >> -> T >> : (de fibo (N) (if (>= 2 N) 1 (+ (fibo (dec N)) (fibo (- N

Re: Pre-compiled picolisp for CentOS, Cygwin, OSX

2013-11-03 Thread Alexander Burger
Hi Keith, > For OSX, I don't remember exactly, but I think I compiled with "emu" (Make > emu), and that's probably why it's so slow. Yes, this explains the slow down. IIRC 'make' even defaults to 'emu' if no supported architecture is detected. ♪♫ Alex -- UNSUBSCRIBE: mailto:picolisp@software-l

Re: Pre-compiled picolisp for CentOS, Cygwin, OSX

2013-11-03 Thread Alexander Burger
Hi Jon, Keith, > I've done some more testing of your 64-bit PicoLisp on my old MacBook Air, > ... > : (== 64 64) > -> T > : (de fibo (N) (if (>= 2 N) 1 (+ (fibo (dec N)) (fibo (- N 2) > -> fibo > : (bench (fibo 33)) > 20.361 sec > -> 3524578 > > The same test using standard 32-bit PicoLisp ru