Hi - I notice the newer pyinstaller versions seem to include quite a few libraries for my application on linux. The application seems to work a lot better if I delete these to force the application to load the native OS versions. I've successfully deleted:
ld-linux.so.2 libcom_err.so.3 libcrypto.so.4 libdl.so.2 libfontconfig.so.1 libfreetype.so.6 libgpm.so.1 libgssapi_krb5.so.2 libICE.so.6 libk5crypto.so.3 libkrb5.so.3 libncurses.so.5 libncursesw.so.5 libreadline.so.4 libresolv.so.2 libSM.so.6 libssl.so.4 libutil.so.1 libX11.so.6 libXext.so.6 libXrender.so.1 libz.so.1 readline.so termios.so I expect I could eliminate some of these by getting rid of the Python readline module which I don't use. After deleting these libraries, the i386 application worked fine when running on an x86-64 system when it didn't before. It also started much more quickly and had working fonts. I expect it will also help make sure I don't ship libraries with security holes too. As long as I build on an old system (I'm using Centos 3) this should be fine shouldn't it? Jeremy -- 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.
