Hi,
when running a standalone executable using arbitrary code like this
line:
---
print "confusing cat..."
---
I get a dialog box "Microsoft Visual C++ Runtime Library" with the
following text content:
---
Runtime Error!
Program: [path-to-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.
---
The code execution resumes, output is correct. However, I tried to
narrow it down and found out that the error disappears when I put a
"progName.exe.manifest" file with following content in the same
directory:
---
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-
com:asm.v1">
<assemblyIdentity name="progName" processorArchitecture="x86"
type="win32" version="1.0.0.0"/>
<dependency>
<dependentAssembly>
<assemblyIdentity name="Microsoft.VC90.CRT"
processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"
type="win32" version="9.0.21022.8"/>
</dependentAssembly>
</dependency>
</assembly>
---
Any Ideas? Bug? Send to trac?
Thanks,
Stefan
--
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.