From 31de47bd92f0bdd2c90e6c8f261a65319d09beed Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Sat, 11 May 2019 14:36:20 +0200 Subject: [PATCH] Update README.md (#18) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c1569872..585821f8 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ emsdk install latest emsdk activate latest ``` add ```./emsdk_env.sh``` into the path to ease future use, or source it everytime. -The Emscripten website provides other installtion methods beyond Linux. +The Emscripten website provides other installation methods beyond Linux. todo: user should copy the app-libs folder into project and include and build. @@ -116,7 +116,7 @@ int main(int argc, char **argv) return 0; } ``` -Use the emcc commmand below to build the WASM C source code into the WASM binary. +Use the emcc command below to build the WASM C source code into the WASM binary. ``` Bash emcc -g -O3 *.c -s WASM=1 -s SIDE_MODULE=1 -s ASSERTIONS=1 -s STACK_OVERFLOW_CHECK=2 \ -s TOTAL_MEMORY=65536 -s TOTAL_STACK=4096 -o test.wasm