Emscripten C ++ 11 Standard Library Support
Does emscripten have full support for the C ++ 11 Standard Library?
In particular, what happens if I use any construct related to concurrency like std :: async, std :: lock_guard, etc.
thank
+3
Max Raskin
source
to share
1 answer
Emscripten uses libC ++, so it has quite complete STL support, except for things that the JS framework cannot handle, such as streams. Things like atomics will work (but don't do anything special because threads don't exist).
+5
Alon zakai
source
to share