mirror of
https://github.com/remko/waforth
synced 2024-12-27 09:59:29 +01:00
Add README.md
This commit is contained in:
parent
be4c838095
commit
71ec9e341a
1 changed files with 26 additions and 0 deletions
26
src/standalone/README.md
Normal file
26
src/standalone/README.md
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
# Standalone native WAForth binary
|
||||||
|
|
||||||
|
This directory contains a small C program to run the WAForth WebAssembly core
|
||||||
|
in a native WebAssembly engine.
|
||||||
|
|
||||||
|
The build currently uses the [Wasmtime](https://wasmtime.dev) engine,
|
||||||
|
but its build configuration can easily be adapted to build using any
|
||||||
|
WebAssembly engine that supports the
|
||||||
|
[WebAssembly C API](https://github.com/WebAssembly/wasm-c-api) (although some
|
||||||
|
engines have [known issues](https://github.com/remko/waforth/issues/6#issue-326830993)).
|
||||||
|
|
||||||
|
## Download
|
||||||
|
|
||||||
|
You can download a pre-built binary of the standalone shell from
|
||||||
|
[the Releases page](https://github.com/remko/waforth/releases).
|
||||||
|
|
||||||
|
|
||||||
|
## Building
|
||||||
|
|
||||||
|
Download dependencies (Wasmtime):
|
||||||
|
|
||||||
|
make install-deps
|
||||||
|
|
||||||
|
Build:
|
||||||
|
|
||||||
|
make
|
Loading…
Reference in a new issue