On 2015-03-23-10:40 CDT, π wrote > So far I have it working on OS X. I've copied the libpython into my project > directory and linked against it. I'm able to launch a Python interpreter, > use the C-API, etc. > > (Incidentally I've open-sourced my Python-C++ bridge here: > https://github.com/p-i-/PiCxx) > > I'm concerned about porting my project to iOS/Android in the future. > > The Kivy developers have successfully built Python2.x + stdlib for > iOS/Android. They plan to eventually to also support 3.x, but it is not a > priority for them at the moment. > > And to my knowledge nobody else has successfully ported 3.x. > > Does anyone know otherwise?
For iOS you should try Russ Magee's patch here: http://bugs.python.org/issue23670 For Android, I've been trying to put something together here: https://github.com/wandering-logic/android_x86_python-3.4 These are both Python 3 and include as much of the Standard Library as possible. (In the case of Android I've got the entire Standard Library compiling, but a few parts of it (e.g. ctypes) aren't passing their regression tests yet. (See the github page for the regression tests that are still failing). -Matt _______________________________________________ Mobile-sig mailing list [email protected] https://mail.python.org/mailman/listinfo/mobile-sig
