Skip to content

Commit 7c3d4cd

Browse files
authored
Fix CI (#2061)
We had CI breakage that prevented this from being noticed before. * Make binaryen.js not use NO_FILESYSTEM - need to investigate why recent emscripten changes broke our usage of that flag. * Update a binaryen.js test.
1 parent db9124f commit 7c3d4cd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build-js.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fi
4040
EMCC_ARGS="-std=c++11 --memory-init-file 0"
4141
EMCC_ARGS="$EMCC_ARGS -s ALLOW_MEMORY_GROWTH=1"
4242
EMCC_ARGS="$EMCC_ARGS -s DEMANGLE_SUPPORT=1"
43-
EMCC_ARGS="$EMCC_ARGS -s NO_FILESYSTEM=1"
43+
EMCC_ARGS="$EMCC_ARGS -s NO_FILESYSTEM=0"
4444
EMCC_ARGS="$EMCC_ARGS -s WASM=0"
4545
EMCC_ARGS="$EMCC_ARGS -s ERROR_ON_UNDEFINED_SYMBOLS=1"
4646
EMCC_ARGS="$EMCC_ARGS -s BINARYEN_ASYNC_COMPILATION=0"

test/binaryen.js/emit_asmjs.js.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function asmFunc(global, env, buffer) {
2828

2929
var FUNCTION_TABLE = [];
3030
return {
31-
main: main
31+
"main": main
3232
};
3333
}
3434

0 commit comments

Comments
 (0)