Hi, > 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) >
On OpenBSD, which doesn't mix 32bit and 64bit this approach is impossible. Yet, it is the simplest possible. Is it possible to have 64 bit C bootstrap a 64 bit assembly? > 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) Java is not available on all hardware architectures! > 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) Is this approach probably too linux specific? thanks > Cheers, > - Alex > -- > UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe > -- UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe
