SangminKim
SangminKim

Reputation: 9166

How can i check how much specific g++ version support C++11

I know this website describing how much specific g++ version support C++11

But It seem not clear for me, Because if we consider <thread> or <chrono>, i don't know which Language Feature represent these functionality.

Upvotes: 1

Views: 851

Answers (1)

Freddie Chopin
Freddie Chopin

Reputation: 8860

The problem with these two things you mentioned is that these are not features of the compiler, but of the library. Another problem is that support for them depends on the "implementation", so for example it may work on Linux, but not work for given "variant" of MinGW on Windows...

Here is the website that answers your question - documentation of libstdc++ (used in GCC): https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2011

Upvotes: 5

Related Questions