It should work without any changes, but maybe clear/delete the build directory. You can check if pyinstaller finds the needed assembly files for Python 2.6 by looking at the output of Build.py (it should print some debug messages like 'I: Found manifest <path>' and 'I: <filename> part of assembly <name> dependency of <otherfile>'). Are you doing an one-dir or one-file build? In the former case, the files Microsoft.VC90.CRT.manifest, msvcm90.dll, msvcp90.dll and msvcr90.dll should appear in your dist/exe directory when you build, in the latter case, they will be added to the exe itself - you can check that with pyinstaller/ArchiveViewer.py <path_to_your_exe>.
Regards, Florian Höch Antonio Valentino schrieb: > On 28 Lug, 13:55, Florian Höch <[email protected]> wrote: >> Regarding the patch I made for Python 2.6+, it's still "unofficial", and >> it requires pywin32 to work (http://sourceforge.net/projects/pywin32/ >> ). That said, only the most recent patch needs to be applied. >> >> Regards, >> >> Florian Höch > > Thank you very much Florian. > > Unfortunately it doesn't seems to work in my case. > > I downloaded a fresh svn working copy from trunk and applied patch > pyinstaller-trunk-r681-py26-win-tweaks-20090618.patch. > Then: > > $ python Configure.py > > Should I update my spec file or make something other? > > thanks > > >> Antonio Valentino schrieb: >> >>> Hi list, >>> I recently updated my python environment to Python 2.6.2 and PyQt >>> 4.5.4. >>> I'm experimenting problems packaging an application that worked fine >>> with the old environment. >>> At application startup an error dialog is showed: >>> "Microsoft Visual C++ Runtime Library >>> Runtime Error! >>> Program: ... >>> R6034 >>> An application has made an attempt to load the C runtime library >>> incorrectly. >>> Please contact the application's support team for more information." >>> After closing the dialog *the application seems to work correctly*. >>> It seems to me that it is a known problem: >>> http://groups.google.com/group/PyInstaller/browse_thread/thread/4b5d8... >>> http://www.pyinstaller.org/ticket/39 >>> So I woul like to know which is the current status of pyinstaller vs >>> python2.6. >>> In order to get it working should I apply all patches attached to >>> http://www.pyinstaller.org/ticket/39? >>> thanks >>> -- >>> Antonio Valentino- Nascondi testo citato >> - Mostra testo citato - > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
