Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which compiler(s) have the most advanced support for the current state of C++0x? [duplicate]

Tags:

c++

c++11

Possible Duplicate:
Compiler support for upcoming C++0x

Looking to use it for a purely experimental purposes. Is there any out there that has full support? Seems VC++ and GCC have very good support, but still incomplete (understandably).

like image 390
Silly Kids Avatar asked Nov 17 '10 03:11

Silly Kids


People also ask

Does G ++ support C++ 11?

The g++ utility supports almost all mainstream C++ standards, including c++98 , c++03 , c++11 , c++14 , c++17 , and experimentally c++20 and c++23 . It also provides some GNU extensions to the standard to enable more useful features.

Which compiler is used in C?

There are many compilers for C, but we will focus on a free open source version called the Gnu C compiler. (Actually we will use the Gnu C++ compiler, but all C programs compile using this compiler).

What is the name of C++ compiler?

The GNU compiler collection, GCC, is one of the most famous open-source tools in existence. It is a tool that can be used to compile multiple languages and not just C or C++. The current version of GCC, GCC 11, has full support for C++17 core language features as well as C++17 library features.


1 Answers

GCC.

You can also consult this handy chart.

like image 56
Travis Gockel Avatar answered Sep 22 '22 03:09

Travis Gockel