Re: undefined symbol: PATH_FS after updating to latest incoming

2019-05-12 Thread Александр Гурьянов
This fix works for me. Thanks! -- You received this message because you are subscribed to the Google Groups "emscripten-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to emscripten-discuss+unsubscr...@googlegroups.com. To view this discussion on

Using OpenMP. Is there a port?

2019-05-12 Thread Thomas Schoenhofer
Hi everyone I am just starting to use Emscripten to explore the world of WebAssembly. For a project at my university I am trying to port an application to WebAssembly, that uses OpenMP for multithreading. The compilation of the software works without a problem but during linking I get the follow

Re: Snapshotting runtime

2019-05-12 Thread Liam Wilson
A couple of years ago was playing around with something similar with Emscripten in asm.js mode. I was able to snapshot/restore program state by saving the contents of the heap to another array, and also saving STACKTOP. I also had to replace _malloc and _free as there seemed to be some internal

Re: Cwrap/ccall belongs to asm.js or wasm or the both

2019-05-12 Thread Floh
Some clarification: the .js file which is generated for wasm compile targets is not asm.js, it's regular Javascript and this is (mostly) needed so that the wasm (or asm.js) code can talk to the HTML5 APIs. The ccall/cwrarp functions are part of the interop-code which simplifies calling from re