The reason lib/ seemed necessary is because it looks for init-7.scm when it runs.
My hello world executable looked like this:
#! /bin/sh
#|
chibi-scheme -A /tmp/lib -I /tmp -- "$0" "$@"
exit $?
|#
(import (chibi))
(display "Hello world from Scheme.")
I'm interested in making both pure-scheme and mixed-c-and-scheme programs on the target machine.
--
You received this message because you are subscribed to the Google Groups "chibi-scheme" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chibi-scheme+unsubscribe@googlegroups.com.
To post to this group, send email to chibi-...@googlegroups.com.
Visit this group at https://groups.google.com/group/chibi-scheme.
For more options, visit https://groups.google.com/d/optout.
- Where do -Q and -q go? In the Makefile? As part of which variable? (Sorry, I'm a complete noob, not just to chibi but also to Makefiles)
- How can it be that I need only libchibi-scheme.so? Don't I also need the chibi-scheme executable itself to interpret a program that is pure scheme?