Fix #5: Python 3.6 support

This commit is contained in:
Michael Droettboom 2018-02-26 17:21:26 -05:00
parent bec7ce3e21
commit 617dbcf4ea
2 changed files with 11 additions and 4 deletions

View File

@ -1,4 +1,4 @@
PYVERSION=3.5.2
PYVERSION=3.6.4
PYMINOR=$(basename $(PYVERSION))
CPYTHON_EMSCRIPTEN_ROOT=../cpython-emscripten

View File

@ -14,11 +14,18 @@ These instructions were tested on Linux. OSX should be substantively the same.
2. Enable the emscripten environment (`source emsdk_env.sh`)
3. Build [cpython-emscripten](https://github.com/dgym/cpython-emscripten):
3. Build [cpython-emscripten](https://github.com/dgym/cpython-emscripten)
1. Clone the git repository
In order to get Python 3.6.4 support, you need to use the py3.6 branch on
mdboom's fork.
2. cd into `3.5.2`, and type `make`.
```
git clone https://github.com/mdboom/cpython-emscripten.git
cd cpython-emscripten
git checkout py3.6
cd 3.6.4
make
```
4. Build this project.