Releases: owl-lisp/owl
Owl Lisp v0.1.16
You can either download and install the source package, or just compile the pre-compiled C version of the repl/compiler and use it directly without further installation. The pre-compiled C version is suitable for quick testing and compilation of projects to C without a lengthy build. The source package takes a while to build, but the interpreter will be a bit faster. Both versions produce equal compiled code.
Precompiled C: ol-0.1.16.c.gz
Example usage with make
:
OWLVER=0.1.16
OWLURL=https://github.com/owl-lisp/owl/releases/download/v$(OWLVER)
program: program.c
cc -O2 -o bin/program program.c
program.c: program.scm bin/ol
bin/ol -O2 -o program.c program.scm
bin/ol:
test -f ol-$(OWLVER).c.gz || wget $(OWLURL)/ol-$(OWLVER).c.gz
gzip -d < ol-$(OWLVER).c.gz > ol-$(OWLVER).c
mkdir -p bin
cc -O2 -o bin/ol ol-$(OWLVER).c
Owl Lisp v0.1.15
You can either download and install the source package, or just compile the pre-compiled C version of the repl/compiler and use it directly without further installation. The pre-compiled C version is suitable for quick testing and compilation of projects to C without a lengthy build. The source package takes a while to build, but the interpreter will be a bit faster. Both versions produce equal compiled code.
Precompiled C: ol-0.1.15.c.gz
Example usage with make
:
OWLVER=0.1.15
OWLURL=https://github.com/owl-lisp/owl/releases/download/v$(OWLVER)
program: program.c
cc -O2 -o bin/program program.c
program.c: program.scm
bin/ol -O2 -o program.c program.scm
bin/ol:
test -f ol-$(OWLVER).c.gz || wget $(OWLURL)/ol-$(OWLVER).c.gz
gzip -d < ol-$(OWLVER).c.gz > ol-$(OWLVER).c
mkdir -p bin
cc -O2 -o bin/ol ol-$(OWLVER).c
Owl Lisp v0.1.14
You can either download and install the source package, or just compile the precompiled C version of the repl/compiler and use it directly without further installation.
Precompiled C: ol-0.1.14.c.gz
Example usage from make:
OWL=ol-0.1.14
OWLSHA=8df96fcb16d666700984ba9db2767dbceba6f6d027623a19be72ea87ce44e15a
OWLURL=https://github.com/aoh/owl-lisp/releases/download/v0.1.14
bin/ol:
test -f $(OWL).c.gz || wget $(OWLURL)/$(OWL).c.gz
sha256sum $(OWL).c.gz | grep -q $(OWLSHA)
gzip -d < $(OWL).c.gz > $(OWL).c
mkdir -p bin
cc -O2 -o bin/ol $(OWL).c
bin/program: program.c
cc -O2 -o bin/program program.c
program.c: program.scm
ol -O2 -o program.c program.scm
Owl Lisp v0.1.13
You can either download and install the source package, or just compile the precompiled C version of the repl/compiler and use it directly without further installation.
Precompiled C: ol-0.1.13.c.gz
Example usage from make:
OWL=ol-0.1.13
OWLSHA=4dc2fe537f9d952d02e3c67564531c0466386b3d353a3
OWLURL=https://github.com/aoh/owl-lisp/files/449350
bin/ol:
test -f $(OWL).c.gz || wget $(OWLURL)/$(OWL).c.gz
sha256sum $(OWL).c.gz | grep -q $(OWLSHA)
gzip -d < $(OWL).c.gz > $(OWL).c
mkdir -p bin
cc -O2 -o bin/ol $(OWL).c
bin/program: program.c
cc -O2 -o bin/program program.c
program.c: program.scm
ol -O2 -o program.c program.scm