Home

Awesome

<img src="https://raw.githubusercontent.com/justinethier/cyclone/master/docs/images/cyclone-logo-04-bootstrap.png" alt="cyclone-scheme">

Travis CI

Github CI - Linux

Github CI - MacOS

Github CI - MacOS Homebrew

Github CI - Windows

Cyclone Scheme is a brand-new, R<sup>7</sup>RS Scheme-to-C compiler that uses a variant of Cheney on the MTA to implement full tail recursion, continuations, and generational garbage collection.

This repository uses intermediate code generated by compiling our Scheme source files to build and install Cyclone Scheme on a fresh system. The compiler is self-hosting and cannot be built directly on a system without Cyclone binaries installed.

Supported Platforms

Cyclone has been built and tested on Linux, Mac, Windows (using MSYS), and FreeBSD 12.0 (with clang 6.0.1).

Otherwise please follow the instructions below to build and install Cyclone.

Packaged Installations

It is possible to install Cyclone via package manager if your system provides one. As of now the only platform that provides packaging is Arch Linux using the cyclone-scheme package from the AUR.

On other systems the following prerequisites must be installed before proceeding with the installation steps below.

Prerequisites

On a Debian variant such as Ubuntu the necessary packages may be installed via the command:

sudo apt-get install libck-dev make gcc

The following command can be used to install dependencies on Fedora:

sudo dnf install ck-devel gcc make

On FreeBSD 12 use the following command:

sudo pkg install concurrencykit gmake

Installation

First, download the latest release in either zip or tar.gz format and unpack the archive.

Use make (or gmake on FreeBSD) without arguments to install in the default location (/usr/local):

make
sudo make install
make test

or include an argument to specify the install directory, EG:

make PREFIX=/home/my-username
make PREFIX=/home/my-username install
make test

Note:

At the moment, Cyclone has been tested on Linux using GCC and on FreeBSD 12 with clang 6.0.1. Other platforms may be added in the future.

Documentation

For more information please return to the main Cyclone page.

License

Copyright (C) 2014 Justin Ethier.

Cyclone is available under the MIT license.