diff --git a/modules/pathkit/CHANGELOG.md b/modules/pathkit/CHANGELOG.md index 44b84a834a..4b5ed53f14 100644 --- a/modules/pathkit/CHANGELOG.md +++ b/modules/pathkit/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Now compile with emsdk 3.1.3 - Internal calls no longer use dynamic dispatch (skbug.com/12795) + - WASM Memory can grow beyond initial 32MB ## [0.7.0] 2019-07-20 diff --git a/modules/pathkit/compile.sh b/modules/pathkit/compile.sh index 0e97a81069..9f6234ac95 100755 --- a/modules/pathkit/compile.sh +++ b/modules/pathkit/compile.sh @@ -121,6 +121,8 @@ $WASM_CONF \ -sNO_EXIT_RUNTIME=1 \ -sNO_FILESYSTEM=1 \ -sDYNAMIC_EXECUTION=0 \ +-sINITIAL_MEMORY=32MB \ +-sALLOW_MEMORY_GROWTH=1 \ -sSTRICT=1 \ $OUTPUT \ $BASE_DIR/pathkit_wasm_bindings.cpp \