Building 64-bit PyObjC Applications With Py2appVirgil Dupras2010-01-19 64-bit is upon us and has been for a while now. With Mac OS X Snow Leopard putting so much emphasis on 64-bit applications, you don't want to be left behind with your py2app built applications, don't you? Well, it turns out you're not entirely out of luck! It requires a bit of tweaking, but building 64-bit Python based applications with py2app is possible. A Mac OS X 10.5 build setup is betterA little note before we start: Although I manage to build working 64-bit applications with py2app under Mac OS X 10.6, I have to build my plugins with the Update 2010-03-04: With Python 2.6.5, that CFAllocator crash doesn't happen anymore. 64-bit PythonThe first thing you need to do is to build yourself a 64-bit python. This is trivial to do and will usually go without problem. Just download the source package from http://www.python.org and do: ./configure --enable-universalsdk=/Developer/SDKs/MacOSX10.5.sdk --enable-framework \ --with-universal-archs=3-way && make && sudo make install Remember that you'll have to rebuild any 3rd party package you installed (except those in pure python, of course) so that they support 64-bit as well. Under Mac OS X 10.6, you might have to use 64-bit py2appUpdate 2010-03-20: The macholib's patch I'm referring to below has been applied in the main repository's trunk, so it doesn't make sense for me anymore to maintain a fork of it. Py2app, however, still isn't patched. Update 2010-07-30: After having tried the latest version of py2app, it seems that this 64-bit issue is now fixed, so you can use the official py2app. However, you might have to rebuild prebuilt binaries. For that, go to the "apptemplate" and "bundletemplate" folder, remove all files in the "prebuilt" subfolder and then run their respective "setup.py" again. Then, install py2app. This is much trickier. The current code in py2app's trunk doesn't support 64-bit. When you try to build a plugin or an app with it, you'll get crashes (I don't quite remember which exactly). This is caused by shortcomings in both macholib and py2app. If you google hard enough, you'll find a very interesting post by Marc-Antoine Parent (thanks man!) who gives patches that magically make py2app work with 64-bit! Yay! Those patches are a little old and target 10.4, which creates some problems, so you have to tweak py2app to target 10.5. There's also a problem with But you don't have to care for any of this because I decided that I'd maintain my own forks of macholib (Update 2010-03-20: not anymore) and py2app (Update 2010-07-30: not anymore). Just use those instead of the official ones, and you should be good to go. PyObjC's problemPyObjC has a memory consumption problem. While this is not a 64-bit issue, I ran into it while trying to build 64-bit applications because it involved using PyObjC 2.2 instead of 1.4. It turns out that PyObjC's new bridge support code consumes a lot of memory (See for yourself, open the Activity Monitor and look at Python's memory usage when you execute While I haven't made much progress on that side (I'm still trying to understand PyObjC's code), I managed to cut memory usage by a great deal by avoiding It's in my plans, however, to tackle PyObjC's bridge support soon. I've been using this package for so long, I guess it's time I contribute back a little bit. ConclusionSee? It's not so hard to build 64-bit applications with py2app. It's not because you chose the best language ever to build your application that you ought to stay in the old 32-bit world. Ahh, it's a beautiful world! |
|