Martin Gamwell Dawids píše v St 21. 09. 2011 v 07:14 -0700: > Not sure, but I guess not. So this also poses problems when moving the > produced binary to another machine. Furthermore, I might have the > problem (not sure about that) that when building the bootloader with > GCC 4.x on one machine it does not run on another machine > (incompatible library versions).
then the libz.a should be also present in the dist folder. It seems to me that you will have to modify in bootloader source the usage of dlopen() function. According to http://stromberg.dnsalias.org/~strombrg/AIX-shared-libs.html You will have to use dlopen like dlopen('libpython2.6.a(libpython2.6.so)') Explicitly saing what file should be imported from the *.a archive. -- 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.
