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
In your explorations of WASM, have you come across a way to use the C++ standard library without emscripten? I've modified your makefile to work on macos, but I haven't been able to get libc++ and libc++abi working. I basically copied the files from emscripten and tried changing them, but there were an overwhelming number of missing functions and errors. I am curious about what emscripten does under the hood.
The text was updated successfully, but these errors were encountered:
It is possible to download a C++ standard library and make it work in this repo. It will be a little messy, as there are many undefined referernces one has to stub.
I have done this, but the resulting WASM file was so large that I thought it was better to stick to C.
In your explorations of WASM, have you come across a way to use the C++ standard library without emscripten? I've modified your makefile to work on macos, but I haven't been able to get libc++ and libc++abi working. I basically copied the files from emscripten and tried changing them, but there were an overwhelming number of missing functions and errors. I am curious about what emscripten does under the hood.
The text was updated successfully, but these errors were encountered: