vote up 7 vote down star
2

My question is simple: What is the best Operating System to develop C++ in? I would like the OS that has more tools and software for C++ development. Keep in mind that I want to develop for command line, because graphical develop in C++ is so confusing.

flag

7  
Surely this should be closed as both "subjective & argumentative" and "not a real question"? – Neil Butterworth Jul 14 at 21:54
4  
I would have voted for community wiki but I can't. – Kirill V. Lyadvinsky Jul 14 at 21:59
5  
There are a lot of useful answers and it has not degenerated into a holy war. I'd say leave it open. And stop calling me Shirley. – tim Jul 14 at 21:59

18 Answers

vote up 33 vote down check

Well, to start out I recommend coding on linux with g++ for your compiler, gdb as your debugger and <insert favorite text editor> as your text editor.

For me when I was first learning C++ I always had the following windows open:

  • Termial for compiling
  • Browser at cplusplus.com for documentation
  • Gedit for editing files

That will help keep things simple to start with.

If you start doing anything more than just learning and getting used to the language and environment, I would switch to a more feature filled IDE. (Visual studio, Eclipse CDT, Codeblocks)

link|flag
2  
Especially for CLI junkies, emacs arguably provides the best interface for debugging C/C++ apps with GDB. – Chris Jul 14 at 21:19
2  
That's why I like Gedit. – jjnguy Jul 14 at 21:42
3  
For a beginner, the g++, gdb and vi/emacs combo is a learning curve steepness explosion! Honestly, I would recommend something simpler, like Visual Studio, XCode, .. – StackedCrooked Jul 14 at 22:35
4  
Don't forget valgrind! valgrind helps a lot for beginners to point out flaws from early days! – LiraNuna Jul 14 at 22:38
2  
Wow, did Linux win this? I'm surprised. This croud is fairly Microsoft heavy. – jjnguy Jul 20 at 14:24
show 6 more comments
vote up 1 vote down

The answer to this question is subjective by the question's very nature, but I'll go out on a limb and say that a Linux or Unix environment is probably easier to work with when doing C++ programming from the command line.

That said, many of the tools (like the G++ compiler and GNU make) you would use in such an environment are portable to other OSes, such as Windows (see Cygwin or MinGW). However, they're a little more integrated with the environment in Linux.

link|flag
Thanks, but i hate to use tools that are not of my OS, like aMSN in Windows and other things..., because of this i have another PC with Linux. – Nathan Campos Jul 14 at 21:14
@Nathan, sorry, I think I misread your question as performing your coding outside of an IDE, rather than developing a program with a command line interface. – Nick Meyer Jul 14 at 21:20
But i'm refering to the tool or ide that i want to use. Thanks! – Nathan Campos Jul 14 at 21:37
vote up 30 vote down

I don't want to start holywars but I think that Visual Studio 2008 IDE has the most convenient debugger, nice editor and standard conformant complier.

For learning there is a free version — Visual Studio Express Edition. And there is the biggest on-line documentation library I ever seen.

In Windows you could use not only Visual Studio compiler, but GNU C++ compiler (g++) also. By using MinGW. At the same time using Visual Studio in Linux is difficult (even with using Wine). So if you ask about best operation system for C++ development and learning that make available to you wide range of development tools (including free g++), Windows is my choice.

link|flag
3  
It looks like windows is winning the war so far. – jjnguy Jul 14 at 21:35
6  
I like Ubuntu. But I have to admit that gdb was made when noone knew what "usability" is. – Kirill V. Lyadvinsky Jul 14 at 21:38
9  
Even the command line debuggers on Windows (ntsd, kd, windbg) are better than gdb imho. – Steve Rowe Jul 14 at 21:50
5  
I take it none of you have looked at DDD, then? – Neil Butterworth Jul 14 at 21:52
2  
@EFraim, a lot of people started with MSVC++ and now they are great programmers. – Kirill V. Lyadvinsky Jul 14 at 22:20
show 11 more comments
vote up 5 vote down

Depends what your target platform is. Generally I would develop on the same platform that my programs are targeting.

Just because you may be developing a command line program for example, doesn't make the Visual Studio debugger any less sweet or fit for the task.

link|flag
I have the two plataforms: Windows and Linux. Thanks! – Nathan Campos Jul 14 at 21:17
1  
A great way to learn multi-OS development, then. Start by writing simple programs, and make sure they run on both systems. – Nosredna Jul 14 at 21:53
vote up 1 vote down

If you want to learn a whole lot of tools, especially command-line tools, then Linux is an easy answer. Edit: I should also note that this will help you gain a more historical perspective on C++ development, as developing from the command line using traditional *nix tools has sorta looked the same for a long, long time. In fact, on my Linux machine I can in only a few minutes setup an "environment", if you can even call it that, that's just about identical to what I was using in 1994 on OSF (gcc, emacs, make, etc). I should also clarify that there are certainly IDEs for Linux, you're not just stuck on the command line...it's just that most tools in this camp are command-line first.

If you just want to learn C++ (e.g. click a button to compile, debug, etc without caring about the nitty gritty of compiling and linking), then there are a lot of IDEs for Windows that'll work fine and are easy to install, such as Bloodshed.

As far as communicating with the end user via the command line, it doesn't really matter which you choose, cout << "will work the same on either platform." << endl;

link|flag
vote up 3 vote down

Thanks to QtCreator you can get a pretty decent development (+debugging) environment setup on Linux, Mac, or Windows without too much hassle. You don't even need to really use Qt if you don't want too.

That being said, the OS you are developing on becomes less relevant if you are only using it for learning. The OS you use should not get in the way of your development process so pick the one that is most comfortable to you. Although, once you have a target platform for whatever you are working on, it would make the most sense to develop on that one.

link|flag
vote up 0 vote down

hey, don't forget good old DOS Borland Turbo C++ 3.0. I learned C++ using that compiler loooong time ago. It perfectly supported anything from compiling C code to C++ sophisticated features like RTTI and templates. And it is ideal for command line! At least I thought so back then.

link|flag
Turbo C++ was nifty. I also used Turbo Pascal quite a bit. Anyhow, Turbo C++ 3 didn't use the final C++ standard... at least I don't think it did. So things like STL are out of the question. – Boden Jul 14 at 21:54
In DOS I used Watcom C++ and Multiedit as editor. That was fun. – Kirill V. Lyadvinsky Jul 14 at 22:12
1  
Actually it's C++ standard support was pretty indecent. Alas, there was no standard yet! Really not an ideal way to start learning now. Well at least it will teach you to appreciate RAM. – EFraim Jul 14 at 22:17
Yes STL as we know it now will not work with TC++3.0. TC++ was more like C with classes – justadreamer Jul 15 at 5:54
vote up 0 vote down

Using an IDE should not be challenging - take the time to try one of the modern ones. If you want command line tools all the OSes and compilers generally have whatever tools you need.

For me, the real issue is the debugging and other productivity improving tools I can use. I prefer to use the IDE for stepping through code and debugging. Using a command line debugger is a frustration I hope to have left behind for good...

As others have said, work on the platform you are most comfortable with consider the platform(s) you are targeting.

With VMs and cross platform tools and frameworks this is less and less of an issue.

EDIT

You'll find that time spent learning how to be productive with your IDE(s) (whichever you choose) will be time well spent. If you can't get someone to show you (or just watch someone coding), then try some online tutorials or webcasts. It will be well worth it.

Your improved productivity can be huge. In general learning the tools will be a great help.

link|flag
vote up 0 vote down

what jia3ep said...

link|flag
2  
Please, post this is a comment not here as an aswear. Thanks! – Nathan Campos Jul 14 at 21:38
6  
...or simply upvote him... – Nicolas Simonet Jul 14 at 22:00
I did up-vote him, but my low rep doesn't allow me to 'comment' on someone else's post ;) -- although as you can see someone else's rep lets them down-vote me... -- at the rate it's going it'll be another year before I can post a comment – Hardryv Jul 15 at 18:56
vote up 10 vote down

I think it would be better to ask which OS you are familiar with and which OS you want to target with your implementations. I wouldn't switch operating systems just to learn a language. Both Windows and Linux (but not as much the Mac) are great places to learn C++.

Windows is best programmed in C++. The underlying APIs are all C or C++ based. The documentation is all aimed at C++ programming. Visual Studio is generally considered the best development environment for C++ on any platform (I'm sure I'll get disagreement from some corners on this one). The debugger in Visual Studio is superior to gdb/ddd that you'll find on Linux.

Linux is also a great C++ development environment. Gcc is a great compiler. Gdb is an acceptable debugger. There are lots of good tools and documentation available for how to use C++ here. Most of the OS APIs are aimed at C or C++ development.

You won't go wrong with either choice. The frustation of trying to learn a new OS along with a new language may be too much though. Stick with what you know.

link|flag
The MS platform is a lot simpler to work with in .NET... IMO – tim Jul 14 at 21:39
2  
@tim - Agreed, but that is really a different platform entirely. Win32 is one platform. .Net is another. – Steve Rowe Jul 14 at 21:49
vote up 0 vote down

Best OS for C++: Mac OS X.

All the Unix CLI, AND all the GUI, as well as the Posix headers and many many free tools.

XCode is a decent IDE, and you can also use emacs, which can function as a command-line IDE. (so can vim, but I am not a vim person. ;-) ).

link|flag
vote up 2 vote down

If you use GNU/Linux and you look for something more like Visual Studio I would suggest that you install Eclipse CDT. That will give you a good IDE with clever auto completion (not just ctags/hippie expand), code browsing, project/build management and a graphical debugger.

link|flag
vote up 1 vote down

Linux especially since you're interested in using the cmd line. Infact c/c++ development was what originally attracted me to Linux. GCC is top notch and there's a wide variety of build tools (make, scons, cmake, jam). I would start out using gedit or something similar and then take some time and learn how to use vim.

link|flag
vote up 1 vote down

For just learning a new language, I think it's important to keep it straightforward and simple, so you can just focus on the code itself. With vi + gcc, I can write a single .cpp file and have it compile to a single executable. No PDBs, no DSWs, and no DSPs cluttering up my environment and possibly causing problems. Perfect for trying out new things to see how they work.

While IDEs are certainly useful tools for real world large projects, I've seen time and again where the extra complexity they introduce just gets in the way. When someone's still trying to learn how #include and cout work, they don't need to be worrying about project and solution settings. Therefor, I recommend using a text editor with syntax highlighting and gcc or some other standalone compiler rather than an IDE for learning.

As for the OS, learn on whatever is most comfortable to you. Learning a language (especially C++) is hard, and you don't really want to be fighting with a foreign OS at the same time. If you're comfortable on both Windows and Linux and have both readily available, switch back and forth. It'll make you more flexible, and if you're doing it right, your code should run the same on both OSes.

link|flag
vote up 0 vote down

That's easy. Just choose the OS that you are most comfortable with today. Windows, MacOSX and Linux all have a good C++ tools.

link|flag
vote up 1 vote down

Either Mac or Linux. Windows has an extremely primitive command-line support.

link|flag
... Which can be easily remedied by installing and using PowerShell, Windows Services for UNIX, MSYS, or Cygwin. – greyfade Jul 15 at 3:34
no, powershell is fail. – Anacrolix Oct 25 at 0:48
vote up 1 vote down

I'm admittedly biased, but I'd recommend Linux. If you want to develop via command-line, it's perfectly suited to it; if you want an IDE, Code::Blocks is pretty nice.

If you decide to use vim for command-line hacking, I highly recommend checking out OmniCPPComplete (the site won't let me post another link, but it's just a Google search away). Sadly, it's not up to par with VS's Intellisense, but it's a heck of an upgrade to ctags. :D

link|flag
vote up 1 vote down

There is no difference what OS you will use. You only need conformant compiler and good text editor.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.