Ikarus Scheme (Bazaar checkout)
Go to file
Abdulaziz Ghuloum f759815a8c - Ikarus now recognizes IKARUS_FASL_DIRECTORY (and the corresponding
fasl-directory parameter) that works as follows:
  - if IKARUS_FASL_DIRECTORY is set to "", no fasl files are produced.
  - if IKARUS_FASL_DIRECTORY is set to something other than "", the
    string is used as a directory in which fasl files are placed.
  - if IKARUS_FASL_DIRECTORY is unset, the directory 
    $HOME/.ikarus/precompiled is used for fasl output.
  - library file names are cannonicalized using file-real-path.
  - the fasl file (if produced) is the result of
     (string-append (fasl-directory) (file-real-path filename) ext)
    where ext is either ".ikarus-32bit-fasl" or ".ikarus-64bit-fasl".

- The old behavior (placing the fasl files in the same place as the
  library files) can be achieved by setting IKARUS_FASL_DIRECTORY='/'.
2009-05-26 13:39:32 +03:00
benchmarks - added a way of making annotated procedures without invoking the 2009-05-11 01:35:38 +03:00
benchmarks.larceny * libraries are now expanded to a special library-letrec* form. 2007-11-17 09:53:22 -05:00
doc - added a way of making annotated procedures without invoking the 2009-05-11 01:35:38 +03:00
lab - Added -d (--debug) flag that enables debugging at the repl, r6rs 2009-05-18 02:08:02 +03:00
lib - added a way of making annotated procedures without invoking the 2009-05-11 01:35:38 +03:00
other-libs moved match.ss and pregexp.ss to the lib directory and modified 2007-12-19 17:39:26 -05:00
scheme - Ikarus now recognizes IKARUS_FASL_DIRECTORY (and the corresponding 2009-05-26 13:39:32 +03:00
src - Added file-real-path which is identical to realpath(3). 2009-05-25 22:19:43 +03:00
.bzrignore * Added char-downcase, char-upcase, char-titlecase, and char-foldcase 2007-06-17 17:20:19 +03:00
ACKNOWLEDGMENTS * Added a dedications file. 2007-11-19 19:04:10 -05:00
BUGS * improved performance for fl+, fl-, fl*, fl/, fl=?, fl<?, fl<=?, fl>? and fl>=? 2007-11-08 12:07:48 -05:00
COPYING * Fixed license issues in COPYING and GPL-3 files. 2007-10-25 17:56:49 -04:00
DEDICATIONS * Added a dedications file. 2007-11-19 19:04:10 -05:00
GPL-3 * Fixed license issues in COPYING and GPL-3 files. 2007-10-25 17:56:49 -04:00
HOWTO-Contribute added: HOWTO-Contribute 2007-12-01 21:38:16 -05:00
Makefile.am renamed the extras directory to be lib. 2007-12-01 01:21:18 -05:00
Makefile.in - added a way of making annotated procedures without invoking the 2009-05-11 01:35:38 +03:00
README * Fixed a few typos in docs. 2007-10-31 04:43:22 -04:00
aclocal.m4 - added a way of making annotated procedures without invoking the 2009-05-11 01:35:38 +03:00
c32 ffi callbacks sorta kinda work now. 2008-09-21 04:08:54 -04:00
c64 first test of ffi works: 2008-09-14 04:17:24 -07:00
compile * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
config.guess * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
config.h.in fixed build error under linux. 2008-11-16 04:22:23 -05:00
config.sub major restructuring to support autotools 2007-10-17 19:59:37 -04:00
configure - added a way of making annotated procedures without invoking the 2009-05-11 01:35:38 +03:00
configure.ac added missing copyrights from scheme files. 2009-01-09 11:40:55 +03:00
depcomp major restructuring to support autotools 2007-10-17 19:59:37 -04:00
install-sh * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
missing * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
mkinstalldirs * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00

README

Ikarus Scheme is an implementation of the Scheme programming
language.  The preliminary release of Ikarus implements the majority
of the features found in the current standard, the Revised 6 report
on the algorithmic language Scheme including full R6RS library and
script syntax, syntax-case, unicode strings, bytevectors,
user-defined record types, exception handling, conditions, and
enumerations.  Over 80% of the R6RS procedures and keywords are
currently implemented and subsequent releases will proceed towards
brining Ikarus to full R6RS conformance.

The main purpose behind releasing Ikarus early is to give Scheme
programmers the opportunity to experiment with the various new
features that were newly introduced in R6RS.  The most important of
such features is the ability to structure large programs into
libraries; where each library extends the language through
procedural and syntactic abstractions.  Many useful libraries can be
written using the currently supported set of R6RS features including
text processing tools, symbolic logic systems, interpreters and
compilers, and many mathematical and scientific packages.  It is my
hope that this release will encourage the Scheme community to write
and to share their most useful R6RS libraries.