Skip to content

Cut the PPC part out of Mac apps

Universal binary applications on Mac OS X are great, because it means they run natively on both older PowerPC Macs and newer Intel Macs natively.

The bad thing about them is that they take up a lot of disc space, because they contain both the PowerPC code and the Intel code.

There’s actually a shareware app called Xslimmer that will strip the PPC binary out of your applications and slim them down, but I just discovered that you don’t need it. The functionality to do this is built right in to Mac OS X.

First of all, make a backup copy of any application you want to mess around with here. Just in case. 🙂

Now head to the Terminal and do the following (in this example, I use Camino, so substitute in the name of the app you’re using):

$ lipo -thin i386 /Applications/Camino.app/Contents/MacOS/Camino -output temp
$ rm /Applications/Camino.app/Contents/MacOS/Camino
$ mv temp /Applications/Camino.app/Contents/MacOS/Camino

If you now do a Get Info on the app, you should see the kind will be Application (Intel). It should run fine and save you a bit of disc space!

In theory this also works the other way round, by using -thin ppc, but I haven’t tried it.

Like this post?

If you would like to support the time and effort I have put into my tutorials and writing, please consider making a donation.

Post a Comment

On some sites, you must be logged in to post a comment. This is not the case on this site.
Your email address is not made public or shared. Required fields are marked with *.
*
*
*

Posting a comment signifies you accept the privacy policy.
Please note — your comment will not appear straight away, as all comments are held for approval.