I'm running Sierra with XCode 8.3 including command line tools. I can use Gambit to compile to OSX native code. I can use lambdanative to compile the test Calculator app to OSX but when I try to configure and then compile for iOS I get the following error in verbose mode:
checking whether the C compiler works... no
configure: error: in `/Users/querist/.lambdanative/tmp_install/gambc-v4_7_9':
configure: error: C compiler cannot create executables
See `config.log' for more details
ERROR: failed with exit code 77
There is no config.log to read. I've done a search for it and there is not one related to this project.
Any ideas? I really like the idea of being able to develop iOS apps in Scheme.
Thanks.
I realize this may be too late, but in case somebody else stumbles upon this, I though I'd try to explain.
config.logis placed in the library output directory, not your working folder. You can look for it by runningfind ~/Library/ -name 'config.log'.In my case,
config.logrevealed the problem is that it can't find some version of acrtlibrary. This problem is addressed here.I edited my
./SETUPfile from my lamdbanative working directory folder, so thatIOSVERSIONwent from the5.1.1default to6.0. That solved the problem for me.