Version 35, changed by admin. 07/27/2008. Show version history
new v04
Kroo's Mac OS X Toolchain installer package is available in the following locations:
Post Install Step 1: Setting up the iPhone firmware files
After installation, copy everything in your heavenly dmg to /Developer/SDKs/iPhone/heavenly/ then copy /Developer/SDKs/iPhone/lib/libarmfp.dylib to /Developer/SDKs/iPhone/heavenly/usr/lib
Note: /Developer/SDKs/ can only be written to as root, so use "su" to create the /Developer/SDKs/iPhone/heavenly/ folder and to execute the "cp -R" command to copy the dmg contents into that folder.
Example:
sudo su
<enter password>
mkdir /Developer/SDKs/iPhone/heavenly
cp -R /Volumes/Heavenly1A543a.UserBundle/* /Developer/SDKs/iPhone/heavenly/
cp /Developer/SDKs/iPhone/lib/libarmfp.dylib /Developer/SDKs/iPhone/heavenly/usr/lib
exit
Post Install Step 2: Adding the compiler to your path
Note: If you have not changed your shell (from the default bash), you can skip this step
Edit ~/.bash_profile and add /Developer/SDKs/iPhone/bin/ to it.
If you don't have a ~/.bash_profile at all, create the file and make it look like this:
PATH="/Developer/SDKs/iPhone/bin/:\\\\\${PATH}"
export PATH
guest said, 08/11/2007:
This appears to be Intel only. An chance of getting a PPC one built?