Andrew Haley wrote:
> > Can anyone point me to the compile button please?
>
> I had to do a web search to find out what X-code is. Apparently it's
> something to do with an Apple GUI: it's certainly nothing to do with
> gcc.
>
> Try http://lists.apple.com/mailman/listinfo/xcode-users
For building "normal" command-line utility programs (with standard
input/output), you can use GCC from the command-line (OS X's "Terminal"
application) as you would on any Unix-style platform:
$ g++ -o program program.cpp
GNU Make is also installed by Xcode, so you can use Makefile-controlled
builds if you prefer.
Of course, if you are trying to build OS X-specific (GUI) applications,
it is way easier to use Xcode to manage your project. :)
--
Tony Wetmore
Solipsys Corporation (http://www.solipsys.com)
mailto:tony.wetmore@xxxxxxxxxxxx