jkn píše v St 01. 02. 2012 v 10:22 -0800: > Hi there > I have a python script which runs on an ARM platform. If I install > and run PyInstaller in this environment, I end up with an Intel 386 > binary ;-(. What would I need to be able to create a binary which runs > on the ARM?
Hi, I don't know of anyone using pyinstaller with arm architecture. So consider ARM as not officially supported by pyinstaller. There are precompiled bootloaders for i386/x86_64 architectures in support/loader directory. That would explain why your binary is Intel 386. You might try to recompile the bootloader with C compiler for arm (highly experimental stuff). Probably you would need to patch the C code of the bootloader. -- 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.
