emscripten icon indicating copy to clipboard operation
emscripten copied to clipboard

Emscripten: An LLVM-to-WebAssembly Compiler

Results 375 emscripten issues
Sort by recently updated
recently updated
newest added

**Version of emscripten/emsdk:** 3.1.57 Right now, the emitted type of the `options` argument for the modularize function is `unknown`. It would be nice if typings were included for this. It...

TypeScript

**Version of emscripten/emsdk:** Failing: 3.1.27 through 3.1.57 Passing: 3.1.10 through 3.1.26 **Failing command line in full:** My goal is to build boost single threaded, so as not to require content...

**Version of emscripten/emsdk:** 3.1.56 Loading a Debug process in Chrome on an AppleSilicon machine will error out and not allow the page to load when project has --fwasm-exceptions for EV_CXX_FLAGS...

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.2 to 4.3.3. Release notes Sourced from actions/upload-artifact's releases. v4.3.3 What's Changed updating @actions/artifact dependency to v2.1.6 by @​eggyhead in actions/upload-artifact#565 Full Changelog: https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3 v4.3.2 What's Changed...

dependencies

When executing the code below, the c++ execution is way slower than the JS one: chrome on linux: ``` cpp_time: 26.043s js_time: 2.685s ``` firefox on linux: ``` cpp_time: 28.458s...

Source code: ```cpp #include #include int main(int argc, char** argv) { int a,b; while( scanf("%d %d",&a,&b)!=EOF){ fflush(stdin); printf("%d %d\n", a, b); } return 0; } ``` In input.txt: ```cpp 1...

**Version of emscripten/emsdk:** emcc (Emscripten gcc/clang-like replacement + linker emulating GNU ld) 3.1.10 (c3fe57af0504fe24fc4ba697feb8c204f3c80022) clang version 15.0.0 (https://github.com/llvm/llvm-project 8bc29d14273b05b05d5a56e34c07948dc2c770d3) Target: wasm32-unknown-emscripten Thread model: posix InstalledDir: /root/emsdk/upstream/bin I followed the last...

My usecase is: fetch a really large file (up to a few GBs) once and then store it locally. The current fetch backend for WasmFS stores the downloaded files in...

wasmfs

Solves #21440 emscripten_dlopen_js Description: Promise-Based Approach as the cannonical approach: Anchoring asynchronous operations within a Promise object, giving a method to manage asynchronous tasks Callback Support: Maintains backward compatibility with...

It seems like maybe some state must be left behind and affecting the second run.