std::shared_mutex was added with the c++ 17 standard, but it does not seem to be available when I #include <shared_mutex>. I've configured my .pro file to use CONFIG += c++20, but the standard library appears to only be from c++ 14. How would I be able to link against a later standard library?
This is what my kit screens look like. How do I tell what compiler will link against c++17? I tried switching to Qt 5.14.1, but that still doesn't have it.