picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 16c303ea577966cabe6eee67851bb0ef25264434
parent ccc031e57572cdee4dfcdac0a91d8ace8fa3f0ea
Author: Alexander Burger <abu@software-lab.de>
Date:   Thu, 10 Nov 2011 13:03:50 +0100

Comments
Diffstat:
Mlib/db32-64.l | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/lib/db32-64.l b/lib/db32-64.l @@ -1,18 +1,18 @@ -# 21jul11abu +# 10nov11abu # (c) Software Lab. Alexander Burger -## 1. On the 32-bit system, in single-user mode: -## : (load "lib/db32-64.l") -## : (export64 *Pool *Dbs *Blob) +## 1. On the 32-bit system: +## $ pil app/main.l @lib/db32-64.l +## : (export64 "db/app/" *Dbs *Blob) +## : (bye) ## ## 2. Transfer the resulting file "~/.pil/db64.tgz" to the 64-bit system, ## and unpack it in the application's runtime directory ## -## 3. On the 64-bit system, in single-user mode: -## : (load "lib/db32-64.l") -## : (import32) +## 3. On the 64-bit system: +## $ pil app/main.l @lib/too.l @lib/db32-64.l -main -import32 -bye -# 64-bit DB export: (export64 "db/app/" *Dbs *Blob) -> "db64.tgz" +# 64-bit DB export -> "~/.pil/db64.tgz" (de export64 (Pool Dbs Blob) (if Blob (call 'tar "cfz" (tmp "db32.tgz") Pool Blob)