Sebastian Alff

Results 69 comments of Sebastian Alff
trafficstars

If you just leave out the the `bindings` property (or make it an empty array), the build system will generate bindings for anything it can currently understand (including your "custom"...

Hmm, this works fine on my system. It completes without error messages and produces the expected build results (js / wasm / d.ts). Maybe your system is running out of...

Hi there! I just tested and verified that it is possible to remove the `maxInstances` limit on firebase functions by passing `0` for that value. I think this is an...

Hi, I just came across this thread. I am working on a project called [OpenCascade.js](https://github.com/donalffons/opencascade.js), which is converting the rather large [OpenCascade](https://github.com/Open-Cascade-SAS/OCCT) project to WebAssembly using Emscripten. The current [beta...

Thanks a lot for pointing me at the docs! Didn't know (and expect) that this was already documented. I made the following (custom) builds of the library 0. [Disabled EH](https://github.com/InteractiveImpressions/opencascade.js-cad-viewer/actions/runs/1258370922)...

I just updated my previous post with the results of the base line build - with disabled EH. I also re-checked the performance results: Turns out that NextJS did some...

Just had another idea: The Wasm EH version **does work** without problems (and seemingly fast) when I'm having Chrome's DevTools open during the execution. Since V8's TurboFan compiler is disabled...

@aheejin, here is a link to the issue on the V8 tracker: https://bugs.chromium.org/p/v8/issues/detail?id=12255 (with an example deployment) About the other (LLVM related) issue: I'm still looking into that. Somehow, I...

I'm also having a use-case where I would like to use hot reloading in a worker thread. I'm using a custom react renderer in a worker to perform heavy computations....

I greatly appreciate that! Thanks for your work on this! Fwiw, I have found [this PR for vite](https://github.com/vitejs/vite/pull/6483), which aims to implement HMR for workers. This does seem to work...