Update readme
This commit is contained in:
parent
a925279e86
commit
2c596c728c
2
Makefile
2
Makefile
|
|
@ -24,7 +24,7 @@ README.md: doc/compile-scheme.1
|
|||
echo "$$(MANWIDTH=80 man -l doc/compile-scheme.1)" >> README.md
|
||||
echo "" > README.md
|
||||
cat README_ADDITIONAL.md >> README.md
|
||||
echo "" > README.md
|
||||
echo "" >> README.md
|
||||
echo "<pre>" >> README.md
|
||||
|
||||
build-chibi:
|
||||
|
|
|
|||
40
README.md
40
README.md
|
|
@ -1,2 +1,42 @@
|
|||
|
||||
# Install
|
||||
|
||||
## Linux
|
||||
|
||||
First install Gauche Scheme, on Debian/Ubuntu for example
|
||||
|
||||
apt-get install gauche
|
||||
|
||||
Then build and install compile-scheme
|
||||
|
||||
make
|
||||
make install
|
||||
|
||||
## Mac OS
|
||||
|
||||
First install Gauche Scheme, with brew for example
|
||||
|
||||
brew install gauche
|
||||
|
||||
Then build and install compile-scheme
|
||||
|
||||
make
|
||||
make install
|
||||
|
||||
## Windows
|
||||
To install on windows first install Gauche Scheme. Then run install.bat as
|
||||
administrator.
|
||||
|
||||
# Usage
|
||||
|
||||
## Powershell
|
||||
|
||||
$env:COMPILE_SCHEME="gauche" ; compile-scheme -o main main.scm
|
||||
.\main.bat
|
||||
|
||||
## Wine cmd
|
||||
|
||||
set COMPILE_SCHEME=gauche
|
||||
|
||||
|
||||
<pre>
|
||||
|
|
|
|||
Loading…
Reference in New Issue