-
-
Notifications
You must be signed in to change notification settings - Fork 75
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
Does not compile on gcc 8.3 with no-rtti (pmr) #109
Comments
Can't reproduce, I can successfully compile with gcc 8.4. Does that work for you? |
Well, it does not work with 8.3 as noted in the issue.
Our workaround is to use using typdefs and not use unordered_dense at all for gcc8.3 targets. As you already closed this issue, I'll assume that do not have plans to support anything newer than 8.4. Would you consider a compiler check or noting this in the documentation? |
I can add a macro to disable inclusion of PMR stuff if that's enough? Then you'll need to define that before including unordered_dense.h. I'm just wondering why you can't upgrade to at least 8.4, as it seems to work there. |
Sounds good.
It's not in our hands. Sometimes there are corporate policies and eternal processes that dictate what to use... 🤷 |
For crosscompiling, we rely on older compiler versions.
Because of pmr (we do not do anything with pmr), compilation fails.
Does it require pmr internally, or only if the user uses it? Maybe it could "just" be disabled completely? I think pmr is not a great dependency to have: while compilers support C++17 for a long time, pmr only came with gcc 9. And relying on "experimental" API (pre gcc 9) does not make one very comfortable, either.
The text was updated successfully, but these errors were encountered: