Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I ran into this issue:
https://github.com/emscripten-core/emscripten/pull/13883/commits
I was able to workaround with some minor changes in the Makefile:
dist/wa-sqlite.mjs: $(BITCODE_FILES) $(LIBRARY_FILES) $(EXPORTED_FUNCTIONS) $(EXTRA_EXPORTED_RUNTIME_METHODS) mkdir -p dist EMCC_CLOSURE_ARGS="--externs my_externs.js" $(EMCC) $(EMFLAGS) $(EMFLAGS_DIST) \ $(EMFLAGS_INTERFACES) \ $(EMFLAGS_LIBRARIES) \ $(BITCODE_FILES) -o $@ dist/wa-sqlite-async.mjs: $(BITCODE_FILES) $(LIBRARY_FILES) $(EXPORTED_FUNCTIONS) $(EXTRA_EXPORTED_RUNTIME_METHODS) $(ASYNCIFY_IMPORTS) mkdir -p dist EMCC_CLOSURE_ARGS="--externs my_externs.js" $(EMCC) $(EMFLAGS) $(EMFLAGS_DIST) \ $(EMFLAGS_INTERFACES) \ $(EMFLAGS_LIBRARIES) \ $(EMFLAGS_ASYNCIFY_DIST) \ $(BITCODE_FILES) -o $@
And this tiny side file:
-- my_externs.js // @externs var dynCall_v;
The text was updated successfully, but these errors were encountered:
Yes, I'm the one who filed this bug with Emscripten and it's mentioned in the README:
Note that there is a regression in EMSDK 2.0.14 that prevents building.
In the bug I suggest exactly this workaround. 😀
Sorry, something went wrong.
Ha, I didn't notice it was you :D
I had no trouble tweaking the Makefile.
No branches or pull requests
I ran into this issue:
https://github.com/emscripten-core/emscripten/pull/13883/commits
I was able to workaround with some minor changes in the Makefile:
And this tiny side file:
The text was updated successfully, but these errors were encountered: