Compile on mac?
#3
There are a lot of pre-compiled binaries available for Mac OS X, but sooner or later you will need to compile something from source. You'll download some gzipped file, unpack it, cd into the directory, and a README will tell you to do "./configure;make && make install"

But it didn't work, did it? That's because Mac OS X doesn't install make or cc or indeed any development tools at all by default.

Fortunately, this is easy to fix. Pop in your install DVD and you'll see a folder called "Xcode Tools". Click on that, install it, and you will now have make, cc and everything else you need to compile that little C code you downloaded.
Thanks given by:


Messages In This Thread
Compile on mac? - by oOPurple_HazeOo - 01 Jul 10, 11:53PM
RE: Compile on mac? - by V-Man - 02 Jul 10, 01:36AM
Compile on mac? - by jobapple2010 - 02 Jul 10, 02:59AM
RE: Compile on mac? - by ärkefiende - 02 Jul 10, 06:05PM
RE: Compile on mac? - by Viper - 03 Jul 10, 02:34AM
RE: Compile on mac? - by oOPurple_HazeOo - 12 Jul 10, 01:40PM
RE: Compile on mac? - by ärkefiende - 12 Jul 10, 02:35PM
RE: Compile on mac? - by oOPurple_HazeOo - 13 Jul 10, 09:47AM