What is the best software ( open source ) for programming on c++ a Mac ?
any suggestions?
What is the best software ( open source ) for programming on c++ a Mac ?
any suggestions?
You don't need anything special to program C++ on the Mac. The only real requirement is to install the developer tools from Apple. This provides the compiler tool-chain and development headers needed to write and compile standards compliant C++ on OS X which is really all you need.
Once you have done that it's a case of either using Xcode to manage your projects and compile your source, or outsourcing to an external build system and possibly an external editor.
A lot of people are happy just to use the default tools. Personally speaking I favour textmate as an editor and I use Waf as a build system so that I can compile my code on many platforms and am not tied into to OS X per-se.
Eclipse works reasonably well on Mac. The requirement that your IDE be open-source is a little odd. More important that it works well, right?