-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added instructions for obtaining emcc
- Loading branch information
1 parent
0b5a035
commit d27ff78
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Install emcc | ||
|
||
``` | ||
git clone https://github.com/emscripten-core/emsdk.git | ||
cd emsdk | ||
./emsdk install latest | ||
./emsdk activate latest | ||
source "/mnt/c/gitprojects/emsdk/emsdk_env.sh" | ||
``` | ||
Configure emsdk in your shell startup scripts by running: | ||
``` | ||
echo 'source "/mnt/c/gitprojects/emsdk/emsdk_env.sh"' >> $HOME/.bash_profile | ||
``` |