Any recommendations for C++ compiler and or environment on the Mac
platform? Using Lion is preferred but Snow Leopard would be
acceptable.
I am new to C++
If you make sure the Developer kit is installed (Install disc, extra
install disk, or download depending on OS) the command line ‘cc’ is
C++. In Terminal you can build things that run from a shell in
Terminal. If you want to build an Aqua program then you’ll need to
use Xcode from the Developer kit, but the C++ learning then becomes
just a part of the whole learning curve. The other option for a
program that runs in a GUI is to build it so that it will run in
X-Windows, which is the Unix GUI system. That would be compiled from
Terminal. There’s a lot of X stuff out there to get the basics from.
David
–
David Ledger - Freelance Unix Sysadmin in the UK.
HP-UX specialist of hpUG technical user group (www.hpug.org.uk)
email@hidden www.ivdcs.co.uk
Coming from Fortran you may get confused by object-oriented programming if you’re not familiar. It took me a couple of tries before I understood that paradigm. There are some good books and docs around about it though, including ones that cover Objective-C.