I checked the PyQt versions on both computers and yeah it's not exactly the same version of PyQt that is installed. That certainly explain the "undefined symbol: _ZN24QXmlStreamEntityResolver13resolveEntityERK7QStringS2" error, I currently didnt manage to get the same version installed with synaptic installer (one computer is on a xubuntu 8.04 with XFCE and the other on ubuntu 8.04 with Gnome and for both of them the PyQT version installed is the last updtodate one whereas they are different :| ). That lead me to the current problem : if I uncomment the regex exclusions, I find the missing module in the distribution module (pyInstaller copy them) but when you start the builded executable it looks like it dont check in it's own folder to search for libraries at all (I'm getting the "ImportError: libQtCore.so.4: cannot open shared object file: No such file or directory" error ). This is really problematic because that mean the builded executable has little chances to find the same library version than the one used to compile it. Is there a way to force PyInstaller/Builded Executable to use the distribution folders libraries ?
On 7 oct, 01:34, Hartmut Goebel <[EMAIL PROTECTED]> wrote: > Kel Solaar schrieb: > > > Sounds like there is a library missing, so I commented the regex in > > bindepend.py so that /usr/lib and /lib are included, this time the > > libraries are sent to the distribution folder (I find the libQtCore.so. > > 4) but the error is still the same : > > Use ArchiveViewer.py to see whether it is put into the archive. > Otherwise try copying this file onto the target computer, too. > > > ImportError: ./PyQt4.QtCore.so: undefined symbol: > > _ZN24QXmlStreamEntityResolver13resolveEntityERK7QStringS2 > > > Anyone has an idea of what's happening ? > > This is a typical error is library versions do not match _exactly_. This > _ZN... stuff is some build-date identifier which is put around the > symbol names. So you need the same version on both computers. Try to fix > the other problem, it's much more helpful :-) > > -- > Schönen Gruß - Regards > Hartmut Goebel > Dipl.-Informatiker (univ.), CISSP > > Goebel Consult > Spezialist für IT-Sicherheit in komplexen > Umgebungenhttp://www.goebel-consult.de > > smime.p7s > 6KAfficherTélécharger --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
