@bldrs-ai/conway 0.8.782 → 0.9.789

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -16,10 +16,17 @@ Conway includes two major subcomponents:
16
16
  1. Install the `gmake` and `node` dependencies via Homebrew (```brew install gmake node```).
17
17
 
18
18
  ### EMSDK Setup
19
- 1. [Install EMSDK](https://github.com/emscripten-core/emsdk). Install version 3.1.72 or higher. ```git checkout 3.1.72```
20
- 2. Add EMSDK environment variable to your terminal.
21
- - Windows: ```EMSDK=C:\path\to\emsdk```
22
- - MacOS: ```export EMSDK=/path/to/emsdk```
19
+ 1. Clone the [EMSDK](https://github.com/emscripten-core/emsdk) repo and add it to your path (see their instructions)
20
+ 2. Conway is using `3.1.72`
21
+ ```
22
+ > cd $EMSDK
23
+ > ./emsdk install 3.1.72
24
+ > ./emsdk activate 3.1.72
25
+ > cd $CONWAY
26
+ conway> emcc -v
27
+ emcc (Emscripten gcc/clang-like replacement + linker emulating GNU ld) 3.1.72 (437140d149d9c977ffc8b09dbaf9b0f5a02db190)
28
+ ...
29
+ ```
23
30
 
24
31
  ### Initial Build
25
32