Re: [Pythonmac-SIG] shrink app bundle size (removing unused stuff)?

2012-03-12 Thread Carlos Grohmann
Can I build for only one (i386) architecture? cheers Carlos On Sat, Mar 10, 2012 at 14:03, Ronald Oussoren wrote: > > On 10 Mar, 2012, at 8:47, Ronald Oussoren wrote: > > > With this the application bundle already shrinks a little (curently 123 > MByte, before I started it was about 160 MByte

Re: [Pythonmac-SIG] shrink app bundle size (removing unused stuff)?

2012-03-12 Thread João Vale
I run this command in my setup.py after the .app is generated, and it's been serving me well: ditto --rsrc --arch i386 file.app new_file.app Cheers, João Vale * * * * On Mon, Mar 12, 2012 at 3:59 PM, Carlos Grohmann wrote: > Can I build for only one (i386) architecture? > > cheers > > Carlos >

Re: [Pythonmac-SIG] shrink app bundle size (removing unused stuff)?

2012-03-12 Thread Ronald Oussoren
On 12 Mar, 2012, at 11:34, João Vale wrote: > I run this command in my setup.py after the .app is generated, and it's been > serving me well: > > ditto --rsrc --arch i386 file.app new_file.app Cool trick, and it doesn't even rely on the developer tools. I've filed an issue in the macholib tra