Sep 2, 2014 at 6:35pm UTC
This is going to sound really stupid but I am a beginner and I am wondering what everyone feels is the best choice for a compiler program.
Lots of websites list different programs but I am wondering if there is any one program that people generally feel is best to use.
Sep 2, 2014 at 6:37pm UTC
Do you want a compiler, or do you want an IDE? There is a big difference.
For example, clang and gcc/MinGW are compilers, whereas Visual Stdio and Code::Blocks are IDEs.
Last edited on Sep 2, 2014 at 6:37pm UTC
Sep 2, 2014 at 6:54pm UTC
What is the target of the compiler? Mac? Windows? Android? Linux?
Sep 3, 2014 at 3:52pm UTC
Probably an IDE would be best fir a windows machine.
Does anyone have any preference on which are considered to th the best ones to use?
Sep 3, 2014 at 3:57pm UTC
intel c++ compiler : faster executeables (mostly) on intel based system as compared to clang and gcc
Sep 3, 2014 at 4:04pm UTC
For IDE:
Try all the ones that you can install for your system and get working, and use the one that has the code completion you are most comfortable with. Some IDEs don't come with their own compiler.
For compiler:
Choose the compiler that:
- is easiest to run on your system
- has the C++11/C++14 support that you want
You can worry about other factors later.
Last edited on Sep 3, 2014 at 4:05pm UTC