example 'clog-demo': update docu

This commit is contained in:
pls.153 2025-04-17 13:04:13 +02:00
parent edd60955db
commit 24f0d4a17d
2 changed files with 8 additions and 4 deletions

View file

@ -2,7 +2,7 @@
Prepare
-------
First you need to patch the ASDF from ECL android. So, switch to where you have
First you need to patch ASDF from ECL android. So, switch to where you have
ecl-android installed, and edit file: 'contrib/asdf/asdf.lisp'.
Find the following function, and replace it with this code:
@ -17,17 +17,17 @@ Find the following function, and replace it with this code:
```
You need to rebuild ECL android after this; in order to make a clean rebuild,
remove the following directories:
```
rm -fr ecl-android
rm -fr ecl-android-host
rm -fr build
```
Then run the 2 build scripts again.
(Notes: this is needed because on android some paths are returned as logical
pathnames, which need translation for the way they are used in CLOG. And in
case the ASDF source files are not present, like here, the above path should
not return NIL, which would give a runtime error, so we simply return the app
not return `nil`, which would give a runtime error, so we simply return the app
path instead.)
--

View file

@ -7,6 +7,10 @@ Try it
You can download an APK (android devices) of this example from DropBox:
[CLOG demo](https://www.dropbox.com/s/h5wy57niq4g12ec/CLOG-demo.apk?dl=0).
**Please note**: startup time on mobile is now greatly improved, by simply
skipping time consuming crypto initialization, not needed for a local
connection, like in this example.
Prepare