-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
c++17 support #5513
Comments
Emscripten's C++ support tracks with the version of clang and libcxx that it uses. You can see the feature matrix here: https://clang.llvm.org/cxx_status.html Currently fastcomp is at clang 4.0. 5.0 just branched so maybe someone will update fastcomp sometime soon (for WebAssembly there is also the upstream LLVM, which tracks LLVM's trunk, if you want to live on the edge). For C++17 specifically, you can use the |
Thank you; |
So is it support C++17 fully now? @dschuff |
oooh, i see. |
Yes. Fastcomp is now on clang 6.0 and apparently "Clang 5 and later implement all the features of the ISO C++ 2017 standard." |
This is more of a question than an issue.
I am trying to run
./em++ -g -std=c++17 test.cpp
, but emscripten doesn't appear to know about c++17. Are there any plans for this, or a workaround?The text was updated successfully, but these errors were encountered: