Hi,

I'm trying to compile a scheme file that uses Gambit's compiler functions to a standalone executable. Is there any good/obvious way of doing that?

This illustrates my problem:

$ cat t.scm
(write compile-file)
$ gsc -exe t.scm
*** WARNING -- "compile-file" is not defined,
***            referenced in: ("/Users/per/prog/gambit/blackhole/tmp/t.c")
$ ./t
#!unbound

Thanks,

Per Eckerdal