+ 2

Which C++ compiler is the best for Windows? Do they have any difference?

29th Apr 2017, 8:22 PM
Rayian Mahi
Rayian Mahi - avatar
4 Answers
+ 9
clang/libc++: clang’s lead developer is also the project editor for the C++ standard, and libc++ was written from scratch to implement C++11 correctly, even if not efficiently or portably. Clang makes an excellent extra compiler to run to catch errors alongside your chosen production compiler. Visual Studio and gcc, both are far ahead of the standard with experimental technical specifications: gcc has concepts, transactional memory, and special math, msvc has modules, coroutines, and parallelism (and concepts are promised soon), both have filesystem. Clang has none of that at the moment. - Sergey Zurgov
30th Apr 2017, 2:02 AM
Agus Mei
Agus Mei - avatar
+ 2
use the compiler that comes with Visual Studio (free download) www.visualstudio.com
30th Apr 2017, 8:55 AM
Krishneel Nair
Krishneel Nair - avatar
+ 1
there is windows c++ compiler and the GCC compiler
29th Apr 2017, 8:48 PM
Abdelaziz Abubaker
Abdelaziz Abubaker - avatar
0
I am currently using minGW
30th Apr 2017, 11:32 AM
Rayian Mahi
Rayian Mahi - avatar