diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-09-26 19:57:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-26 19:57:12 -0700 |
commit | 6459efffec8282b53b135edcbaeb2da8964a822b (patch) | |
tree | 5c96beea836b47af733ab69c5a5ea28ca21ea1f8 | |
parent | dc31b460fef47dfb3415b4ae6276fff4919a03e2 (diff) | |
download | binaryen-6459efffec8282b53b135edcbaeb2da8964a822b.tar.gz binaryen-6459efffec8282b53b135edcbaeb2da8964a822b.tar.bz2 binaryen-6459efffec8282b53b135edcbaeb2da8964a822b.zip |
Revert to C++14 in build-js.sh (#2360)
-rwxr-xr-x | build-js.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-js.sh b/build-js.sh index 2ad96e221..19cbbb5e3 100755 --- a/build-js.sh +++ b/build-js.sh @@ -37,7 +37,7 @@ elif [ ! -d "$EMSCRIPTEN" ]; then exit 1 fi -EMCC_ARGS="-std=gnu++17 --memory-init-file 0" +EMCC_ARGS="-std=gnu++14 --memory-init-file 0" EMCC_ARGS="$EMCC_ARGS -s ALLOW_MEMORY_GROWTH=1" EMCC_ARGS="$EMCC_ARGS -s DEMANGLE_SUPPORT=1" EMCC_ARGS="$EMCC_ARGS -s NO_FILESYSTEM=0" |