On Mon, 2010-12-06 at 18:18 +0100, Giovanni Bajo wrote: > On Mon, 2010-12-06 at 11:41 -0500, Isaac Wagner wrote: > > I found the problem and it's really stupid. I'm sure this is > > mentioned somewhere, but I didn't see it in the docs. I just had to > > disable binary stripping in my spec file. Now the world is happy. > > Ewww... can you investigate on how stripping the binaries corrupt them > on Mac OSX? > > If this is the case, shouldn't we disable stripping altogether on Mac?
Found this: http://stackoverflow.com/questions/4184017/dlopen-dlsym-on-the-main-executable-how-portable-is-it Isaac, can you try changing the strip call in Build.py to "strip -d" or "strip -Sx" and test what happens? BTW: stripped binaries are cached in PyInstaller's bincache* subdirectories. If you change the way they are stripped, you must completely remove the bincache folders to avoid many headaches ;) -- Giovanni Bajo :: [email protected] Develer S.r.l. :: http://www.develer.com My Blog: http://giovanni.bajo.it Last post: Compile-time Function Execution in D -- 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.
