Re: how to determine pil 64bit/32bit version?

2018-07-14 Thread O.Hamann
Thank you all for your quick replies, George, Alex, Mike! I think I have to revisit the docs, I cannot remember that I have ever read about that solution. Thank you. On 13.07.2018 12:31, Mike wrote: I don't know how to check whether on a rasp runs the 32bit or 64bit version of picolisp.

Re: how to determine pil 64bit/32bit version?

2018-07-13 Thread Mike
> > I don't know how to check whether on a rasp runs the 32bit or 64bit version > of picolisp. > (unless (== 64 64) (msg "pil64 required") (bye 1) ) (mike) -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Re: how to determine pil 64bit/32bit version?

2018-07-13 Thread Alexander Burger
On Fri, Jul 13, 2018 at 12:08:55PM +0200, O.Hamann wrote: > Document string for (version flg) says: 'The JVM- and C-versions print an > additional "JVM" or "C",' > > Am I right, that a result list like (16 12 8) signals definitely a 64bit > picolisp version? No, this plain list (16 12 8) is

Re: how to determine pil 64bit/32bit version?

2018-07-13 Thread George Orais
Hi, I usually follow the one on the readme file which suggest to do this; input the folowing expression on the repl: (== 64 64) if it returns T then its running 64bit if it returns NIL its running 32bit Hope this helps, cheers! BR, geo > On Jul 13, 2018, at 7:08 PM, O.Hamann wrote: > >

how to determine pil 64bit/32bit version?

2018-07-13 Thread O.Hamann
Document string for (version flg) says: 'The JVM- and C-versions print an additional "JVM" or "C",' Am I right, that a result list like (16 12 8) signals definitely a 64bit picolisp version? I don't know how to check whether on a rasp runs the 32bit or 64bit version of picolisp. Regards