We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
emscripten_memcpy_biig
Describe the bug Trying to load the most recent wasm release, fails to link due to missing emscripten_memcpy_big declaration in pdfium.js
emscripten_memcpy_big
pdfium.js
pdfium-release.js:8 wasm streaming compile failed: LinkError: WebAssembly.instantiate(): Import #8 "env" "emscripten_memcpy_big": function import requires a callable
To Reproduce
System (please complete the following information):
Additional context
Manually defining emscripten_memcpy_big in the generated pdfium.js file fixes this issue and loads correctly
var _emscripten_memcpy_big = (dest, src, num) => { HEAPU8.copyWithin(dest, src, src + num); } ... emscripten_memcpy_big: _emscripten_memcpy_big
The text was updated successfully, but these errors were encountered:
Hi,
Project was updated to latest version.
If your problem was solved, can you close the issue pls?
Thanks.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Trying to load the most recent wasm release, fails to link due to missing
emscripten_memcpy_big
declaration inpdfium.js
To Reproduce
System (please complete the following information):
Additional context
Manually defining
emscripten_memcpy_big
in the generatedpdfium.js
file fixes this issue and loads correctlyThe text was updated successfully, but these errors were encountered: