diff options
author | Nisheet Sinvhal <nisheet1.sinvhal@gmail.com> | 2018-09-27 14:42:14 -0700 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2018-09-27 17:34:20 -0700 |
commit | 50b8935a1f0e0d26a3a05cce17b4548de99e35a4 (patch) | |
tree | 8a2f6a6f69d91ce7c4132abe51007e76503c6a86 | |
parent | ed33b0c7837603cf7e65a02ad03e581f58ab14ed (diff) |
Better build instructions for windows
Fixes #802.
-rw-r--r-- | README.md | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -99,10 +99,14 @@ submodule. However, you need to install separately: 1. [Rust](https://www.rust-lang.org/en-US/install.html) 2. [Node](http://nodejs.org/) 3. Python 2. [Not 3](https://github.com/denoland/deno/issues/464#issuecomment-411795578). -4. [ccache](https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/ccache) (Optional but helpful for speeding up rebuilds of V8.) -. +4. [ccache](https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/ccache) (Optional but helpful for speeding up rebuilds of V8.). +5. Extra steps for Windows users: + 1. Add `python.exe` to `PATH`. E.g. `set PATH=%PATH%;C:\Python27\python.exe` + 2. Get [VS Community 2017](https://www.visualstudio.com/downloads/), make sure to select the option to install C++ tools and the Windows SDK + 3. Enable `Debugging Tools for Windows`, Goto Control Panel -> Windows 10 SDK -> Right-Click -> Change -> Change -> Check Debugging Tools for Windows -> Change -> Finish -To build: + +#### To build: # Fetch deps. git clone --recurse-submodules https://github.com/denoland/deno.git |