@@ -11,11 +11,19 @@ released.
11
11
You can also set up Emscripten from source, without the pre-built SDK, see
12
12
"Installing from Source" below.
13
13
14
- ## Downloads
14
+ ## Downloads / How do I get the latest Emscripten build?
15
15
16
16
To get started with Emscripten development, see the [ Emscripten website
17
17
documentation] ( https://emscripten.org/docs/getting_started/downloads.html ) .
18
18
19
+ That explains how to use the emsdk to get the latest binary builds (without
20
+ compiling from source). Basically, that amounts to
21
+
22
+ ```
23
+ ./emsdk install latest
24
+ ./emsdk activate latest
25
+ ```
26
+
19
27
## SDK Concepts
20
28
21
29
The Emscripten SDK is effectively a small package manager for tools that are
@@ -118,7 +126,7 @@ Emsdk contains a history of old compiler versions that you can use to maintain
118
126
your migration path. Type ` emsdk list --old ` to get a list of archived tool and
119
127
SDK versions, and ` emsdk install <name_of_tool> ` to install it.
120
128
121
- ### I want to build from source/I want to download a precompiled build !
129
+ ### I want to build from source!
122
130
123
131
Some Emsdk Tool and SDK targets refer to packages that are precompiled, and
124
132
no compilation is needed when installing them. Other Emsdk Tools and SDK
@@ -132,6 +140,7 @@ To obtain and build latest upstream wasm SDK from source, run
132
140
133
141
```
134
142
emsdk install sdk-upstream-master-64bit
143
+ emsdk activate sdk-upstream-master-64bit
135
144
```
136
145
137
146
You can use this target for example to bootstrap developing patches to LLVM,
0 commit comments