Results 142 issues of juj

``` emcc.bat test\hello_world.c -sMIN_FIREFOX_VERSION=65 --proxy-to-worker -o test.html ``` and run in Firefox 65, results in The `?.` constructs have not been babeled: Remove `--proxy-to-worker` and the issue vanishes.

`a.c` ```c #include #include #include #define FINAL_HEAP_SIZE (64 * 1024 * 1024) const char *_Atomic buffer = NULL; void *thread_start(void *arg) { char *buf = malloc(FINAL_HEAP_SIZE); buf += FINAL_HEAP_SIZE -...

In the old PR https://github.com/emscripten-core/emscripten/pull/19289 I proposed three helper functions `{{{ ptrToIdx() }}}`, `{{{ convertPtrToIdx() }}}` and `{{{ idxToPtr() }}}` to provide a unified programming model for converting between Wasm...

Running `test/runner simd2.test_autodebug_wasm` fails with: ``` ====================================================================== FAIL: test_autodebug_wasm (test_core.simd2.test_autodebug_wasm) ---------------------------------------------------------------------- Traceback (most recent call last): File "c:\emsdk\emscripten\main\test\common.py", line 919, in resulting_test return func(self, *args) File "c:\emsdk\emscripten\main\test\common.py", line 653, in...

``` C:\emsdk\emscripten\main>test\runner wasm2js0.test_autodebug_wasm Running test_core: (1 tests) test_autodebug_wasm (test_core.wasm2js0.test_autodebug_wasm) ... env_modify: {'EMCC_AUTODEBUG': '1'} -- begin program output -- Aborted(Assertion failed: missing Wasm export: __get_temp_ret) C:\emsdk\emscripten\main\out\test\test_autodebug.js:5893 var e = new WebAssembly.RuntimeError(what);...

Consider the following test case: `test.c` ```c #include #include #include #include void* thread_main(void* param) { printf("thread_main\n"); exit(0); } int main(int argc, char** argv) { pthread_t thread; pthread_create(&thread, 0, thread_main, NULL);...

Debugging the failure of `browser.test_sdl2_canvas_proxy` in Firefox, it turns out that Chrome is behaving in a nonstandard manner in its WebGL2 implementation, which hides a SDL2 Emscripten port bug, and...

### Description of the bug When I store a TV show that is identified by Jellyfin, using the naming convention `TVShowName/Season 1/S1E1.mkv`, and the show `TVShowName` is identified, then Jellyfin...

bug
stale

It looks like to get Buildbot running on a Windows on ARM device, one must install specifically version 3.4.1. Newer versions do not work. ``` C:\buildbot>python.exe -m pip install buildbot-worker...

When I run our Emscripten unit test command locally from command line, everything is sweet. Though if I instruct the same command to run as a buildbot ShellCommand, then I...