summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/contributing/building_from_source.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/contributing/building_from_source.md b/docs/contributing/building_from_source.md
index 381ad7b03..8b1c1ab9b 100644
--- a/docs/contributing/building_from_source.md
+++ b/docs/contributing/building_from_source.md
@@ -25,6 +25,15 @@ Extra steps for Windows users:
### Prerequisites
+You will need to [install Rust](https://www.rust-lang.org/tools/install). Make
+sure to fetch the latest stable release as Deno does not support nightly builds.
+Check that you have the required tools:
+
+```
+rustc -V
+cargo -V
+```
+
The easiest way to build Deno is by using a precompiled version of V8:
```