31 lines
677 B
Markdown
31 lines
677 B
Markdown
# gsc = gajumaru sophia compiler
|
|
|
|
**This is _NOT_ the official Sophia compiler.** If you're looking for
|
|
that see https://git.qpq.swiss/QPQ-AG/sophia
|
|
|
|
This is an incomplete prototype rewrite of the legacy (official)
|
|
sophia compiler in straightforward Erlang. It grew out of my (Peter
|
|
Harpending) own efforts to document the language and its relationship
|
|
to FATE (the gajumaru virtual machine).
|
|
|
|
The goal for version 0.1 is to mirror the success behavior of the
|
|
legacy sophia compiler.
|
|
|
|
# Setup
|
|
|
|
```
|
|
git clone https://git.qpq.swiss/QPQ-AG/gsc.git
|
|
```
|
|
|
|
Add the following to `~/.bashrc` or wheremstever:
|
|
|
|
```
|
|
export PATH=$PATH:/path/to/gsc/bin
|
|
```
|
|
|
|
To test run
|
|
|
|
```
|
|
gsc --help
|
|
```
|