Re: [Chicken-users] Chicken on Termux

2017-05-12 Thread Phil Bewig
I began as John suggested with the following command line: TMPDIR=$HOME/tmp make C_COMPILER=clang PREFIX=$HOME/chicken-4.12.0 PLATFORM=linux install This ran fine (about ten minutes) until it encountered an error on the line: clang -L. chicken.o batch-driver.o compiler.o optimizer.o lfa2.o

Re: [Chicken-users] Chicken on Termux

2017-05-12 Thread Alexander Shendi (web.de)
Dear Phil, It's me again. Some remarks: I did successfully compile CHICKEN 4.12.0 on Termux/Android. Please use that exact release as it contains several fixes for the Android platform. 1) I used PLATFORM=android as Termux uses Android's libc (Bionic) rather than GNU libc. 2) The complete

Re: [Chicken-users] Chicken on Termux

2017-05-12 Thread John Cowan
On Fri, May 12, 2017 at 5:00 PM, Phil Bewig wrote: 1) What is the correct PLATFORM for the make command? Is it android? Termux > isn't really android, it is its own version of unix, similar to Debian. > I would try PLATFORM=linux and see if it works. If not, you may need your

[Chicken-users] Chicken on Termux

2017-05-12 Thread Phil Bewig
I recently purchased a Lenovo TAB2 A10 tablet computer and installed Termux, a unix-like environment, from the Play Store. I want to compile Chicken for my computer so I can have a Scheme REPL with me wherever I go. I have several questions: 1) What is the correct PLATFORM for the make command?