What is the best way to program C ++ on a Mac?

What is the best (open source) software for programming with C ++ Mac?

any suggestions?

+4
source share
4 answers

Xcode, same as C and ObjC.

+8
source

You do not need anything special to program C ++ on a Mac. The only real requirement is to install Apple’s developer tools . This provides the compiler toolchain and development headers needed to write and compile C ++ compatible standards in OS X, which is really all you need.

Once you have done this, this is the case of using Xcode to manage your projects and compile your source, or outsource to an external build system and, possibly, an external editor.

Many people are happy to just use the default tools. Personally, I prefer textmate as an editor, and I use Waf as a build system so that I can compile my code on many platforms and is not tied to OS X per-se.

+6
source

Eclipse works fine on a Mac. Requiring your development environment to be open, a little weird. More importantly, it works well, right?

+1
source

Textmate is the best option I've tried so far. I personally found that Xcode is pretty annoying, and Textmate is perfect for my use. The only potential problem is that you have to pay for it (after a 30-day trial period). You can download it at: http://macromates.com/ .

0
source

All Articles