Hello,
I am just looking for a C++ IDE for Apple's OS X. I currently use netbeans for java but cannot find something as robust as this for C++.
Thanks!
Hello,
I am just looking for a C++ IDE for Apple's OS X. I currently use netbeans for java but cannot find something as robust as this for C++.
Thanks!
Apple's free-download Xcode IDE and tools, which bundles gcc
/g++
is what pretty much everyone uses on the Mac for native code development. If you have reasons to be looking for something beyond this, you should update your question to clarify your needs.
In terms of compilers, g++
integrates the best with XCode, since that's what Apple ships. However, if you want something that generates far more optimal object code (non-PPC), you should look into the Intel Compiler for MacOS X. If you're looking for a better IDE than XCode...I'm not really sure you're going to find it, although if you're comfortable with NetBeans you can use that with g++ (unsure how good it is as a C/C++ development environment though).
I'm a big fan of emacs and g++. I do all my programming there, it makes it easy to transition back and forth between my macbook and my linux netbook.