David Cortesi píše v Út 11. 10. 2011 v 17:59 -0700: > 1) even when I run: arch -i386 /usr/bin/python pyinstaller.py etc, > I still get the warning "You are running 64-bit Python."
This is the default behaviour: The msg is there for the purpose to let users know that they are going to create a 64bit binary which might not work on older MacOSX and how they could run pyinstaller to create 32bit binaries. > 3) Not so good, when I use a spec WITH the BUNDLE request it builds an > app bundle (with qt_menu.nib in it, hurrah!), but alas, this app does > not run properly: It creates its window and the window responds to > mouse clicks, but there are no menus. The Mac OS Menu bar which should > show the app's name and its menus, has instead the app name and menus > of the preceding app, e.g. Finder, and the finder's menus. Or Terminal > or whatever other app was last in front. Without menus it cannot do > File Open or File Quit or any menu command, and will not terminate > (command-Q goes to the OTHER app whose name is in the menu bar!) So > you go to the Activity Monitor and find its process name and kill > that. There is one thing you could try: remove the dir APP_BUNDLE/Contents/MacOS/qt_menu.nib The approach with qt_menu.nib when a bundle is created is to just copy APP_BUNDLE/Contents/MacOS/qt_menu.nib to APP_BUNDLE/Contents/Resources/qt_menu.nib Thanks in advance. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
