I am trying to pack a mixed Python / C ++ application using py2app. My setup.py is
from setuptools import setup setup(app=['voxpopuli.py'],data_files=[],options= {'py2app'{'argv_emulation':True}},setup_requires=['py2app'])
and I call py2app through
python setup.py py2app --no-strip --iconfile /Users/irving/otherlab/other/bin/OLicon.icns --resources /opt/local/lib/Resources/qt_menu.nib
This completes without warning or error, but when I try to start the recovery application, a pop-up window appears that simply says “voxpopuli Error”. It has an open console button, but the only console messages are
9/21/12 11:43:14.691 AM voxpopuli[52765]: voxpopuli Error 9/21/12 11:43:15.926 AM com.apple.launchd.peruser.501[158]: ([0x0-0x177d77c].org.pythonmac.unspecified.voxpopuli[52765]) Exited with code: 255
Are there standard ways to get more information from py2app to help diagnose this error?
source share