What is Mosh?
Mosh is a free and fast interpreter for Scheme as specified in the R6RS. The current release of Mosh supports all of the features R6RS. See detailed information on http://mosh.monaos.org.
Building and Installing Mosh
Get a release of Mosh from Download.
macOS
Install Dependences
% brew install pkg-config gmp oniguruma
Build and Install
% ./configure
% make
% make test
% sudo make install
Ubuntu
Install Dependences
% apt install pkg-config libgmp-dev libonig-dev
Build and Install
% ./configure
% make
% make test
% sudo make install
Other Platforms
How to build head and contribute
You can start developing Mosh in 1 minute using GitHub Codespaces.
- Tap the green "Code" button on the top right of this page.
- It will open VSCode on a browser.
- Edit some files.
- Go to the terminal in VSCode and build Mosh.
$ ./gen-git-build.sh
$ ./configure
$ make
If you don't want to use GitHub Codespaces
To build mosh.git you need to have release version mosh and some other tools installed. Please use and see docker/dev to build.
CI
Make a release.
- Update verions in configur.ac.
- Make sure GitHub Actions are all green.
git tag mosh-0.2.8-rc3 -a -m "mosh-0.2.8-rc3"
andgit push origin mosh-0.2.8-rc3
will trigger the release build.- Update
.github/workflows/build.yml
.