You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Failing command line in full:
Calling msync on an anonymous mmap results in a JS type error and abort. msync of an anonymous mappings is a no-op. It should verify the argument (address is multiple of page size, flags are correct) and return with an error.
$ gcc -o msync msync.c && ./msync
$ emcc -sNODERAWFS -o msync.js msync.c && node msync.js
/python-wasm/cpython/builddir/msync.js:147
throw ex;
^
TypeError: Cannot read property 'stream_ops' of undefined
at Object.msync (/python-wasm/cpython/builddir/msync.js:2842:20)
at Object.msync (/python-wasm/cpython/builddir/msync.js:4828:103)
at Object.doMsync (/python-wasm/cpython/builddir/msync.js:4478:12)
at ___syscall_msync (/python-wasm/cpython/builddir/msync.js:4611:16)
at <anonymous>:wasm-function[12]:0x5bc
at <anonymous>:wasm-function[6]:0x2fc
at main (<anonymous>:wasm-function[7]:0x3b7)
at /python-wasm/cpython/builddir/msync.js:1544:22
at callMain (/python-wasm/cpython/builddir/msync.js:5191:15)
at doRun (/python-wasm/cpython/builddir/msync.js:5248:23)
The text was updated successfully, but these errors were encountered:
Adding the wasmfs label here because if we don't get around to fixing this in the old FS, we may want to make sure the new FS fixes this before we enable it by default.
Version of emscripten/emsdk:
Failing command line in full:
Calling
msync
on an anonymous mmap results in a JS type error and abort.msync
of an anonymous mappings is a no-op. It should verify the argument (address is multiple of page size, flags are correct) and return with an error.The text was updated successfully, but these errors were encountered: