Re: pilbox

2020-11-23 Thread Alexander Burger
Hi Shaughan, > When I install the latest version of Pilbox from the Play Store and run Demo > —> Life, I get > > (grid 32 32} > Undefined I think this is due to a mismatch between PilBox and the Demo App. PilBox is now running pil21, and Demo uses the 'simul' library from "@lib/simul.l".

Re: Build a picolisp core for android fails

2020-11-23 Thread Alexander Burger
Hi Gaston, > I try a build a picolisp core apk for android. > /mk.pilbox work OK > But in Android when app run get error " bin/picolisp not found" Since SDK 29, Android does no longer allow the execution of binaries in the App's data directories:

Re: Call native wrapper function with double argument

2020-11-23 Thread Alexander Burger
On Mon, Nov 23, 2020 at 06:17:46PM +0100, Alexander Burger wrote: > Something like '("Dx" (24 . 1.0) '(1.0 1.0 2.0 3.0)) could make sense, if the > C > argument is "double dx[3];". oops (24 . 1.0) is of course not returning "double dx[3];", but a single double. Try (24 1.0 1.0 1.0) or better

Build a picolisp core for android fails

2020-11-23 Thread Gaston Pepe
I try a build a picolisp core apk for android. /mk.pilbox work But in Android when app run get error " bin/picolisp not found"

pilbox

2020-11-23 Thread Shaughan Lavine
When I install the latest version of Pilbox from the Play Store and run Demo —> Life, I get (grid 32 32} Undefined Is this a bug, or am I missing something? Thanks, Shaughan Sent from ProtonMail mobile

Re: Call native wrapper function with double argument

2020-11-23 Thread Alexander Burger
Hi Thorsten, > libblas.so is on my machine, the C function "idamax_" is found,which is > actually a C wrapper for Fortran Code. > In the Fortran docs, the parameters are described exactly, see below. Hmm, the signature of the C function would be more helpful, as we want to call it, and it should

Re: Call native wrapper function with double argument

2020-11-23 Thread Thorsten Jolitz
Hi Alex, one more 'native' question, this time a bit more complicated: libblas.so is on my machine, the C function "idamax_" is found,which is actually a C wrapper for Fortran Code. In the Fortran docs, the parameters are described exactly, see below. Since the Parameters of the C function are