From f32581706fe92ff1020f24764800e9e4362c7d0d Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 4 Apr 2019 15:19:14 -0700 Subject: [PATCH] Document that cmake and clang are build dependencies. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 86ff8395af..72a89871c9 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,9 @@ utility or as a library embedded in a larger application. Wasmtime passes the WebAssembly spec testsuite, and supports a new system API proposal called [WebAssembly System Interface], or WASI. +To build Wasmtime, install cmake and clang, and then build with cargo, such +as with "cargo build --release". + There are Rust, C, and C++ toolchains that can compile programs with WASI. See [here][WASI intro] for more information, and [here][WASI tutorial] for a tutorial on compiling and running programs using WASI and wasmtime, as