Official chibi-scheme repository
Find a file
2012-11-03 23:35:37 +09:00
benchmarks Renaming the (scheme) library to (chibi). Leaving (scheme) as an alias for backwards compatibility. 2012-10-14 22:11:47 +09:00
build-lib/chibi/char-set Renaming the (scheme) library to (chibi). Leaving (scheme) as an alias for backwards compatibility. 2012-10-14 22:11:47 +09:00
contrib automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
data adding ascii and full unicode char-set libraries based on isets 2012-06-17 19:36:17 +09:00
doc DragonFly build support patch from ctismyusername. 2012-06-19 22:47:15 -07:00
examples Cleanup up echo server example. 2012-09-16 15:20:09 +09:00
include/chibi char-ready? shouldn't block, should return #t on EOF 2012-10-21 18:10:45 +09:00
lib Adding bytevector support to srfi-38. 2012-11-03 23:35:37 +09:00
opt Build fixes for plan9. Moving individual object files out of opt/ since plan9 mkfiles have issues with these. 2012-08-16 16:04:02 +09:00
tests log takes two arguments now 2012-11-03 23:07:18 +09:00
tools Renaming the (scheme) library to (chibi). Leaving (scheme) as an alias for backwards compatibility. 2012-10-14 22:11:47 +09:00
.hgignore ignoring generated file 2012-08-26 13:54:16 +09:00
AUTHORS updating authors 2012-08-26 14:30:46 +09:00
bignum.c Build fixes for plan9. Moving individual object files out of opt/ since plan9 mkfiles have issues with these. 2012-08-16 16:04:02 +09:00
chibi-scheme.vcproj automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
COPYING automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
eval.c hard-coding scheme-report-environment version lookup to 7 2012-11-01 23:26:52 +09:00
fedora.spec automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
gc.c printing debug output on OOM 2012-06-24 14:07:59 -07:00
main.c chibi main always wants to make stdin/out/err non-blocking 2012-07-21 17:23:12 +09:00
Makefile Adding gabriel benchmarks. 2012-08-26 12:23:56 +09:00
Makefile.detect Incorporating Alan Watson's TAI time library. 2012-08-17 10:04:37 +09:00
Makefile.libs makefile changes to allow linking external libs for 3rd party code 2012-07-09 20:28:18 +09:00
mkfile Build fixes for plan9. Moving individual object files out of opt/ since plan9 mkfiles have issues with these. 2012-08-16 16:04:02 +09:00
opcodes.c log takes two arguments now 2012-11-03 23:07:18 +09:00
plan9.c Build fixes for plan9. Moving individual object files out of opt/ since plan9 mkfiles have issues with these. 2012-08-16 16:04:02 +09:00
README automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
README.libs makefile changes to allow linking external libs for 3rd party code 2012-07-09 20:28:18 +09:00
RELEASE automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
sexp.c Supporting (partially) infinite complex numbers. 2012-10-31 23:41:53 +09:00
simplify.c Build fixes for plan9. Moving individual object files out of opt/ since plan9 mkfiles have issues with these. 2012-08-16 16:04:02 +09:00
TODO automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
VERSION automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
vm.c Checking for utf8 encoding exceptions in read/peek-char. 2012-10-13 21:59:38 +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".