On Tue, 2011-01-11 at 07:01 -0800, Stefan Fruehwirth wrote: > > On 11 Jan., 15:30, Florian Höch <[email protected]> wrote: > > > The --onefile Build.py log looks fine I think, also the --onedir contents. > > Can you run > > pyinstaller\ArchiveViewer.py <path-to-your-onefile-executable> > > and post the list of files? > > Output: > > pos, length, uncompressed, iscompressed, type, name > [(0, 681871, 681871, 0, 'z', 'outPYZ1.pyz'), > (681871, 8342, 24121, 1, 'm', 'iu'), > (690213, 169, 234, 1, 'm', 'struct'), > (690382, 6010, 16552, 1, 'm', 'archive'), > (696392, 1157, 2272, 1, 's', '_mountzlib'), > (697549, 81, 76, 1, 's', 'useUnicode'), > (697630, 34, 26, 1, 's', 'pyInstallerR6034Issue'), > (697664, 39920, 87552, 1, 'b', '_ctypes.pyd'), > (737584, 5444, 10240, 1, 'b', 'select.pyd'), > (743028, 231896, 583680, 1, 'b', 'unicodedata.pyd'), > (974924, 35130, 69632, 1, 'b', 'bz2.pyd'), > (1010054, 391031, 805376, 1, 'b', '_ssl.pyd'), > (1401085, 38022, 95744, 1, 'b', 'win32api.pyd'), > (1439107, 20385, 43008, 1, 'b', '_socket.pyd'), > (1459492, 602, 1857, 1, 'b', 'Microsoft.VC90.CRT.manifest'), > (1460094, 317595, 655872, 1, 'b', 'msvcr90.dll'), > (1777689, 155722, 568832, 1, 'b', 'msvcp90.dll'), > (1933411, 66835, 224768, 1, 'b', 'msvcm90.dll'), > (2000246, 1049758, 2262528, 1, 'b', 'python26.dll'), > (3050004, 42514, 109568, 1, 'b', 'pywintypes26.dll'), > (3092518, 274, 488, 1, 'b', 'pyInstallerR6034Issue.exe.manifest')] > > The manifest file seems to be included, the content is the same as in > onedir mode.
Another test: change your program so that it prints os.environ["_MEIPASS2"] and doesn't exit immediately; then, while it is running, go to the temporary directory that was printed and check if the manifest file is there. Thanks! -- Giovanni Bajo :: [email protected] Develer S.r.l. :: http://www.develer.com My Blog: http://giovanni.bajo.it Last post: Compile-time Function Execution in D -- 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.
