Go to file
retropikzel b1fb158c9e Fix Loko on R6RS 2026-03-14 12:23:02 +02:00
.gitignore First version 2026-03-12 18:16:24 +02:00
Dockerfile.jenkins Kawa fixes 2026-03-12 19:41:21 +02:00
Dockerfile.test Add support for Capyscheme 2026-03-13 07:02:00 +02:00
Jenkinsfile Remove support for mit-scheme 2026-03-13 14:08:21 +02:00
Makefile Fix tests on Sagittarius 2026-03-13 17:38:31 +02:00
README.md Update readme 2026-03-13 08:48:19 +02:00
compile-r7rs Fix Loko on R6RS 2026-03-14 12:23:02 +02:00

README.md

Implementation of SRFI-138: Compiling Scheme programs to executables made with POSIX Shell.

Usage

COMPILE_R7RS=${SCHEME} compile-r7rs -o main -I libs -A other_libs main.scm
./main

Suppoerted implementations

  • capyscheme
  • chezscheme
  • chibi
  • chicken
  • cyclone
  • foment
  • gauche
  • guile
  • ikarus
  • ironscheme
  • kawa
  • larceny
  • loko
  • meevax
  • mosh
  • mit-scheme
  • racket
  • sagittarius
  • skint
  • stklos
  • tr7
  • ypsilon

How it works

With compilers, it compiles. With interpretes it creates a script file which contains shebang to run the implementation with given -I and -A paths and contents of input file (.sps or .scm).

Misc

  • No support for -D yet.