mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 14:49:18 +02:00
preparing for 0.2 release
This commit is contained in:
parent
7e3014ba38
commit
8a8e7c165e
2 changed files with 3 additions and 7 deletions
2
Makefile
2
Makefile
|
@ -12,7 +12,7 @@ MODDIR=$(PREFIX)/share/chibi-scheme
|
|||
LDFLAGS=-lm
|
||||
|
||||
# -Oz for smaller size on darwin
|
||||
CFLAGS=-Wall -O2 -g -save-temps
|
||||
CFLAGS=-Wall -O2 -g #-save-temps
|
||||
|
||||
./gc/gc.a: ./gc/alloc.c
|
||||
cd gc && make
|
||||
|
|
8
README
8
README
|
@ -4,10 +4,7 @@
|
|||
|
||||
Simple and Minimal Scheme Implementation
|
||||
|
||||
http://synthcode.com/scheme/chibi-scheme-0.1.tgz
|
||||
|
||||
version 0.1
|
||||
April 8, 2009
|
||||
http://synthcode.com/wiki/chibi-scheme/
|
||||
|
||||
|
||||
Chibi-Scheme is a very small but mostly complete R5RS Scheme
|
||||
|
@ -16,8 +13,7 @@ as much as possible not to trade its small size by cutting corners,
|
|||
and provides full continuations, both low and high-level hygienic
|
||||
macros based on syntactic-closures, string ports and exceptions.
|
||||
Chibi-Scheme is written in highly portable C and supports multiple
|
||||
simultaneous VM instances to run. Currently Chibi-Scheme uses the
|
||||
Boehm conservative garbage collector to try to play well with C code.
|
||||
simultaneous VM instances to run.
|
||||
|
||||
To build, just run "make". You can edit the file config.h for a
|
||||
number of settings, mostly disabling features to make the executable
|
||||
|
|
Loading…
Add table
Reference in a new issue