July 14, 2018 1:36 PM, "O.Hamann" <o.ham...@gmx.net> wrote:

> Outdated thread, but just to keep my promise:
> 
> - dusty rasp has 64bit picolisp running, examined by (== 64 64) ==> T
> 
> - *CPU shows 'emu'
> 
> Os is a 64bit archlinux.

archlinux should work out of box, what i would do:

# install archlinux
# pacman -Sy reflector
# reflector --latest 10 --protocol https --sort rate --save 
/etc/pacman.d/mirrorlist
# pacman -Syu
# reboot 

pil32:
# wget http://software-lab.de/picoLisp.tgz
# gunzip picoLisp.tgz
# tar xf picoLisp.tar
# cd picoLisp/src
# make
# cd ../bin
# vim pil -> "change path to picoLisp"
# head -1 pil
   #!/home/mpech/picoLisp/bin/picolisp /home/mpech/picoLisp/lib.l

# add picoLisp/bin dir to $PATH inside your shell
# pil +
: (version)
18.7.14 C
-> (18 7 14)
: (== 1 1)
-> NIL
: *OS
-> "Linux"
# pil "@lib/test.l" +
OK

pil64 after it:
# cd picoLisp/src64
# make
# pil +
 (version)
18.7.14
-> (18 7 14)
: (== 1 1)
-> T
: *OS
-> "Linux"
# pil "@lib/test.l" +
OK



compile pil64 without pil32:
# cd picoLisp/src64
# make clean
# cd ../
# wget http://software-lab.de/x86-64.linux.tgz
# gunzip x86-64.linux.tgz
# tar xf x86-64.linux.tar
# cd src64/
# make
# pil +
: (version)
18.7.14
-> (18 7 14)
: (== 1 1)
-> T
: *OS
-> "Linux"
: 

Happy coding,

(mike)

--
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Reply via email to