Go to file
retropikzel 76ffe790d3 Make Chicken use R7RS 2026-03-26 07:16:18 +02:00
.gitignore First version 2026-03-12 18:16:24 +02:00
Dockerfile.alpine.test Alpine linux support (#2) 2026-03-25 12:52:36 +01:00
Dockerfile.jenkins Add Shellcheck to Jenkins 2026-03-14 12:50:01 +02:00
Dockerfile.test Add support for Gambit 2026-03-21 07:41:14 +02:00
Jenkinsfile Add Shellcheck to Jenkins 2026-03-14 12:50:01 +02:00
Makefile Improve testing 2026-03-26 07:14:16 +02:00
README.md Fix typo in readme 2026-03-21 14:36:24 +02:00
compile-r7rs Make Chicken use R7RS 2026-03-26 07:16:18 +02:00
configure Add configure file 2026-03-20 19:07:53 +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

Supported 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.