This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author chaselton
Recipients chaselton, ethan.furman, freakboy3742, r.david.murray, refi64, skrah, vstinner
Date 2015-03-01.00:17:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425169078.09.0.553414746557.issue23496@psf.upfronthosting.co.za>
In-reply-to
Content
*ALL Android devices have /dev/ptmx (adb even assumes it)...should the *configure script be modified to skip that check if cross-compiling for *Android?

Yes, definitely. See the mods to pyconfig.h here"
https://code.google.com/p/python-for-android/wiki/CrossCompilingPython

Ignore the #define ANDROID 1.  GCC 4.8.x and later add -mandroid and/or -mbionic which defines __ANDROID__; I've been putting android-related changes under that macro.

*Cyd (and anyone else who can), do you think you could test the binaries, *too? I'll get them to you somehow. You have a real device; I have an old *real device and an emulator.

Sure...especially since the KBOX env is needed.

*Side note for Cyd: I'd advise you just use the fork of CPython you have *and just push them to GitHub:

$ git remote add origin <url of your GitHub repo with .git at the end>
$ git push --all origin -u

*That will push your changes (and every branch of CPython, I have no clue *what your branch name is, so this just does everything) to the GitHub *mirror.

I forked the Cpython repo on Github, set 3.4 as the default branch and

$git clone https://github.com/cydhaselton/cpython.git

After modifying files and/or adding dirs, copying files

$git add <modified file>

Hopefully the above was ok.

Off to read up on commits
History
Date User Action Args
2015-03-01 00:17:58chaseltonsetrecipients: + chaselton, vstinner, r.david.murray, skrah, freakboy3742, ethan.furman, refi64
2015-03-01 00:17:58chaseltonsetmessageid: <1425169078.09.0.553414746557.issue23496@psf.upfronthosting.co.za>
2015-03-01 00:17:58chaseltonlinkissue23496 messages
2015-03-01 00:17:57chaseltoncreate