Official chibi-scheme repository
Find a file
Alex Shinn 3a511302c4 Calling gc when open returns EMFILE (out of open file descriptors).
This still needs to be done for fd's created as sockets and other sources.
2011-12-17 00:05:55 +09:00
benchmarks/shootout Followup to previous patch - updating scripts to import (scheme), and tests to run with -xscheme. 2011-11-30 09:43:27 +09:00
contrib Adding bash_completion support for chibi-scheme. 2011-12-06 21:53:58 +09:00
doc Documentation updates. 2011-12-04 15:01:52 +09:00
examples Followup to previous patch - updating scripts to import (scheme), and tests to run with -xscheme. 2011-11-30 09:43:27 +09:00
include/chibi Calling gc when open returns EMFILE (out of open file descriptors). 2011-12-17 00:05:55 +09:00
lib Fixing order of prefix import spec. 2011-12-15 22:12:11 +09:00
opt catching potential overflow in fixnum+fixnum cases in sexp_add similar to last change 2011-11-28 22:20:24 +09:00
tests removing string-set! from tests so immutable string config can pass 2011-12-11 14:26:44 +09:00
tools Modifying chibi-genstatic to take a list of .sld files on stdin and an optional -x <excluded-mods> ... option. 2011-12-11 21:10:09 +09:00
.hgignore ignoring additional files 2011-11-10 05:35:03 +09:00
AUTHORS updating docs for new release 2011-11-24 10:49:55 +09:00
chibi-scheme.vcproj fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
COPYING fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
eval.c Calling gc when open returns EMFILE (out of open file descriptors). 2011-12-17 00:05:55 +09:00
fedora.spec fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
gc.c Including type tag in gc debug output for conservatively preserved objects. 2011-12-11 21:06:19 +09:00
main.c heap size utility 'multiplier' not used with boehm 2011-12-11 14:24:45 +09:00
Makefile Modifying chibi-genstatic to take a list of .sld files on stdin and an optional -x <excluded-mods> ... option. 2011-12-11 21:10:09 +09:00
mkfile Simplifying Plan9 CPPFLAGS. 2011-12-11 21:13:31 +09:00
opcodes.c including the new definition from the last patch 2011-11-27 22:42:22 +09:00
README updating docs for new release 2011-11-24 10:49:55 +09:00
RELEASE preparing for 0.5 release 2011-11-04 22:49:58 +09:00
sexp.c string-ref and string-set! will raise an error on the trailing null byte. 2011-12-12 09:37:58 +09:00
TODO Updating TODO. 2011-11-14 08:19:17 +09:00
VERSION Bumping version. 2011-12-04 16:27:20 +09:00
vm.c Fixing bug off-by-one bug in sexp_apply - stack top was left one higher than on entry to hold the result. 2011-12-01 08:43:39 +09:00

                             Chibi-Scheme
                            --------------
                                   
    Minimal Scheme Implementation for use as an Extension Language

              http://synthcode.com/wiki/chibi-scheme/

Chibi-Scheme is a very small library intended for use as an extension
and scripting language in C programs.  In addition to support for
lightweight VM-based threads, each VM itself runs in an isolated heap
allowing multiple VMs to run simultaneously in different OS threads.

The default language is an extended subset of the current draft R7RS
Scheme, with support for all libraries.  Support for additional
languages such as JavaScript, Go, Lua and Bash are planned for future
releases.  Scheme is chosen as a substrate because its first class
continuations and guaranteed tail-call optimization makes implementing
other languages easy.

To build on most platforms just run "make && make test".  This will
provide a shared library "libchibi-scheme", as well as a sample
"chibi-scheme" command-line repl.  You can then run

  sudo make PREFIX=/usr/local install

to install the binaries, leaving out the PREFIX for the default
/usr/local or specifying an alternate install location.  If you want
to try out chibi-scheme without installing, be sure to set
LD_LIBRARY_PATH so it can find the shared libraries.

For more detailed documentation, run "make doc" and see the generated
"doc/chibi.html".