Hi all,

for completeness, let me list three options for building a full
PicoLisp-64 system, using Debian-amd64 as an example:


1. Stand-alone bootstrap, using a temporary 32-bit version:

   # apt-get install libc6-dev-i386 libssl-dev libx11-dev libxext-dev

   $ (cd src; make all)
   $ (cd src64; make)


2. Using a Java runtime system (version 1.6 or higher):

   # apt-get install openjdk-6-jre
   # apt-get install libssl-dev libx11-dev libxext-dev

   $ (cd src; make tools gate x11)
   $ (cd src64; make)


3. Using the pre-generated "*.s" file package:

   # apt-get install libssl-dev libx11-dev libxext-dev

   $ (cd src; make tools gate x11)
   $ wget http://software-lab.de/x86-64.linux.tgz && tar xvfz x86-64.linux.tgz
   $ (cd src64; make)


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

Reply via email to