I created a small python program on the basis of what you had said in an earlier email. Used your pyinstaller github repo version to compile. Here are the details of the compilation and the error I got:
$ cat test.py from twisted.internet import protocol from PyQt4.QtGui import QApplication import qt4reactor app = QApplication([]) qt4reactor.install() $ python ../pyinstaller/pyinstaller.py --onefile test.py fatal: Not a git repository (or any of the parent directories): .git 42 INFO: wrote C:\cygwin\tmp\test\test.spec 72 INFO: Testing for ability to set icons, version resources... 75 ERROR: ... resource update unavailable - C:\cygwin\tmp\pyinstaller\support\loader\Windows-32bit\r unw.exe not found 82 INFO: UPX is not available. 111 INFO: Processing hook hook-os 305 INFO: Processing hook hook-time 373 INFO: Processing hook hook-_sre 411 INFO: Processing hook hook-cStringIO 425 INFO: Processing hook hook-codecs 458 INFO: Processing hook hook-encodings 1134 INFO: Processing hook hook-cPickle 1397 INFO: Processing hook hook-httplib 1409 INFO: Processing hook hook-email 1577 INFO: Processing hook hook-email.message 1951 WARNING: library python%s%s required via ctypes not found 2139 INFO: checking Analysis 2141 INFO: building Analysis because out00-Analysis.toc non existent 2143 INFO: running Analysis out00-Analysis.toc 2152 INFO: Adding Microsoft.VC90.CRT to dependent assemblies of final executable 2269 INFO: Searching for assembly x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_none ... 2271 INFO: Found manifest C:\Windows\WinSxS\Manifests\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21 022.8_none_bcb86ed6ac711f91.manifest 2276 INFO: Searching for file msvcr90.dll 2278 INFO: Found file C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb 86ed6ac711f91\msvcr90.dll 2282 INFO: Searching for file msvcp90.dll 2285 INFO: Found file C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb 86ed6ac711f91\msvcp90.dll 2289 INFO: Searching for file msvcm90.dll 2291 INFO: Found file C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb 86ed6ac711f91\msvcm90.dll 2392 INFO: Analyzing C:\cygwin\tmp\pyinstaller\PyInstaller\loader\_pyi_bootstrap.py 2416 INFO: Processing hook hook-os 2437 INFO: Processing hook hook-site 2640 INFO: Processing hook hook-time 2713 INFO: Processing hook hook-_sre 2749 INFO: Processing hook hook-cStringIO 2763 INFO: Processing hook hook-codecs 2782 INFO: Processing hook hook-encodings 3465 INFO: Processing hook hook-cPickle 3722 INFO: Processing hook hook-httplib 3731 INFO: Processing hook hook-email 3902 INFO: Processing hook hook-email.message 4280 WARNING: library python%s%s required via ctypes not found 4502 INFO: Processing hook hook-pydoc 4625 INFO: Analyzing C:\cygwin\tmp\pyinstaller\PyInstaller\loader\pyi_importers.py 4953 INFO: Analyzing C:\cygwin\tmp\pyinstaller\PyInstaller\loader\pyi_archive.py 5249 INFO: Analyzing C:\cygwin\tmp\pyinstaller\PyInstaller\loader\pyi_carchive.py 5525 INFO: Analyzing C:\cygwin\tmp\pyinstaller\PyInstaller\loader\pyi_os_path.py 5550 INFO: Analyzing test.py 5557 INFO: Processing hook hook-PyQt4 5558 INFO: Processing hook hook-PyQt4.QtGui 6097 INFO: Processing hook hook-PyQt4.QtCore 6596 INFO: Processing hook hook-xml 6684 INFO: Processing hook hook-xml.dom 6718 INFO: Processing hook hook-xml.sax 6771 INFO: Processing hook hook-pyexpat 6786 INFO: Processing hook hook-xml.dom.domreg 7201 INFO: Processing hook hook-pywintypes 7462 INFO: Hidden import 'encodings' has been found otherwise 7462 INFO: Looking for run-time hooks 7463 INFO: Analyzing rthook C:\cygwin\tmp\pyinstaller\PyInstaller\loader\rthooks\pyi_rth_qt4plugins. py 7766 INFO: Analyzing rthook C:\cygwin\tmp\pyinstaller\PyInstaller\loader\rthooks\pyi_rth_encodings.p y 14424 INFO: Using Python library C:\Windows\system32\python27.dll 14511 INFO: Warnings written to C:\cygwin\tmp\test\build\pyi.win32\test\warntest.txt 14525 INFO: checking PYZ 14525 INFO: rebuilding out00-PYZ.toc because out00-PYZ.pyz is missing 14525 INFO: building PYZ out00-PYZ.toc 16277 INFO: checking PKG 16278 INFO: rebuilding out00-PKG.toc because out00-PKG.pkg is missing 16278 INFO: building PKG out00-PKG.pkg 22053 INFO: checking EXE 22054 INFO: rebuilding out00-EXE.toc because test.exe missing 22054 INFO: building EXE from out00-EXE.toc 22058 INFO: Appending archive to EXE C:\cygwin\tmp\test\dist\test.exe $ ./dist/test.exe WARNING: file already exists but should not: C:/Users/joe/AppData/Local/Temp/_MEI80722\.\pywintypes27.dll Runtime Error: Program C:\cygwin\tmp\test\dist\test.exe R6034 An application has made an attempt to load a C runtime library incorectly. Please contact the application's support team for more information. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To view this discussion on the web visit https://groups.google.com/d/msg/pyinstaller/-/GDC8X-y6Fh8J. 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.
