diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-03-28 10:00:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-28 10:00:14 -0400 |
commit | 5837ce464c3283dc13f7bec237902b8c637f462d (patch) | |
tree | d8ff47c7a441543aae803c5f0057006e3876ec48 /std | |
parent | 2874664e9131616b71dd0d7d23750245b023833f (diff) |
upgrade: rusty_v8 to v0.3.9 (#4505)
Diffstat (limited to 'std')
-rw-r--r-- | std/manual.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/manual.md b/std/manual.md index b9f337170..f073d1508 100644 --- a/std/manual.md +++ b/std/manual.md @@ -1512,13 +1512,13 @@ Extra steps for Windows users: The easiest way to build Deno is by using a precompiled version of V8: ``` -V8_BINARY=1 cargo build -vv +cargo build -vv ``` However if you want to build Deno and V8 from source code: ``` -cargo build -vv +V8_FROM_SOURCE=1 cargo build -vv ``` When building V8 from source, there are more dependencies: |