iPhone Toolchain for Leopard - Version 0.30
By popular demand…
Here’s a script to make your Apple OS X Leopard 10.5.1-based toolchain setup easier. Be sure your iPhone (Heavenly) directory is extracted to /usr/local/share/iphone-filesystem before using the script.
Move the script to the directory of your choice, and in that directory try:
sudo bash ./leopard_toolchain.sh
If you’re feeling lucky, run the script straight from this website:
curl http://kevinchiu.org/leopard_toolchain.sh|sudo bash
3 Responses to 'iPhone Toolchain for Leopard - Version 0.30'
Leave a Reply
You must be logged in to post a comment.
[...] Une fois ceci fait, j’ai utilisé le script de Kevin Chiu, qui automatise l’installation du reste de la toochain (étapes qui sont [...]
MalloxCast » [How To] Développer des applications pour l’iPhone/iPod Touch sous Leopard
26 Jan 08 at 6:27 am
Hey Kevin,
thanks a lot for providing this. It seems like the combination of Mac OS X 10.5.1 and the toolchain do not allow anymore to compile C++ programs.
From what I understand the sjlj exception handling is not supported by LLVM … this did not show up with XCode 2.5 and Mac OS X 10.4.11 … strange.
wolf
27 Jan 08 at 10:50 pm
so it turns out the workaround is to specify
CFLAGS= -DDEBUG -Wall -fno-exceptions
in the makefile
wolf
27 Jan 08 at 11:30 pm