File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ available tools, run `emsdk list`.
100
100
* If a tool/SDK is currently active, a star * will be shown next to it.
101
101
* If a tool/SDK is currently active, but the terminal your are calling emsdk
102
102
from does not have ` PATH ` and environment set up to utilize that tool, a star
103
- in parentheses (\* ) will be shown next to it. Run ` emsdk_env.bat ` (Windows) or
104
- ` source . /emsdk_env.sh ` (Linux and OS X) to set up the environment for the
103
+ in parentheses (\* ) will be shown next to it. Run ` emsdkpy/ emsdk_env.bat` (Windows) or
104
+ ` source emsdkpy /emsdk_env.sh ` (Linux and OS X) to set up the environment for the
105
105
calling terminal.
106
106
107
107
### How do I install a tool/SDK version?
Original file line number Diff line number Diff line change 9
9
# activated.
10
10
./emsdk install sdk-upstream-5c776e6a91c0cb8edafca16a652ee1ee48f4f6d2
11
11
./emsdk activate sdk-upstream-5c776e6a91c0cb8edafca16a652ee1ee48f4f6d2
12
- source . /emsdk_env.sh
12
+ source emsdkpy /emsdk_env.sh
13
13
which emcc
14
14
emcc -v
15
15
16
16
# Install an older version of the SDK that requires EM_CACHE to be
17
17
# set in the environment, so that we can test it is later removed
18
18
./emsdk install sdk-fastcomp-3b8cff670e9233a6623563add831647e8689a86b
19
19
./emsdk activate sdk-fastcomp-3b8cff670e9233a6623563add831647e8689a86b
20
- source . /emsdk_env.sh
20
+ source emsdkpy /emsdk_env.sh
21
21
which emcc
22
22
emcc -v
23
23
test -n " $EM_CACHE "
@@ -26,7 +26,7 @@ test -n "$EM_CACHE"
26
26
# of test.py.
27
27
./emsdk install latest
28
28
./emsdk activate latest
29
- source . /emsdk_env.sh --build=Release
29
+ source emsdkpy /emsdk_env.sh --build=Release
30
30
# Test that EM_CACHE was unset
31
31
test -z " $EM_CACHE "
32
32
You can’t perform that action at this time.
0 commit comments