Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-30 Thread Gregory P. Smith
On Sun Jan 25 2015 at 7:08:53 AM Antoine Pitrou wrote: > On Sun, 25 Jan 2015 05:22:48 + > "Gregory P. Smith" wrote: > > Why doesn't our Makefile supply that flag with the make parallelism level > > in the sharedmods step? > > If I run "make -j4" here, it works (on the default branch). > Tha

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-25 Thread Cyd Haselton
Thanks...this looks interesting Antonio. I'm not familiar enough with Makefile syntax and creation to know if this can help in my case and (fingers crossed) I believe I've just about solved my original undefined reference to dlopen problem, but I'll be bookmarking it for future reference (and in c

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-25 Thread Cyd Haselton
Since (judging from the lack of responses) setup.py can't be removed from the Makefile, I kept troubleshooting.I've managed to get the build to complete and make install runs instead of throwing an undefined reference right off the bat, unfortunately I've run into the following: ImportError: No mo

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-25 Thread Antoine Pitrou
On Sun, 25 Jan 2015 05:22:48 + "Gregory P. Smith" wrote: > Why doesn't our Makefile supply that flag with the make parallelism level > in the sharedmods step? If I run "make -j4" here, it works (on the default branch). Regards Antoine. ___ Python-

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-25 Thread Antonio Cavallo
I tried a Makefile based build of python (+ some module) in the past for Android (and macos): https://bitbucket.org/cavallo71/android There was no particular problem in dropping autoconfigure+setup.py in the process: the only real problem was the pgen must be compiled on the host machine (b

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-24 Thread Gregory P. Smith
Why doesn't our Makefile supply that flag with the make parallelism level in the sharedmods step? On Sat Jan 24 2015 at 2:25:45 PM Antoine Pitrou wrote: > On Sat, 24 Jan 2015 21:53:06 +0100 > "M.-A. Lemburg" wrote: > > > > BTW: Parallel execution, cross compilation can be added > > to setup.py.

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-24 Thread Antoine Pitrou
On Sat, 24 Jan 2015 21:53:06 +0100 "M.-A. Lemburg" wrote: > > BTW: Parallel execution, cross compilation can be added > to setup.py. I don't think parallel execution is all > that important, $ ./python setup.py build_ext --help [...] --parallel (-j) number of parallel build jobs Regards

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-24 Thread Cyd Haselton
On Sat, Jan 24, 2015 at 2:23 PM, Zachary Ware wrote: > On Saturday, January 24, 2015, Brett Cannon wrote: >> >> On Fri Jan 23 2015 at 5:45:28 PM Gregory P. Smith wrote: >>> >>> On Fri Jan 23 2015 at 11:20:02 AM M.-A. Lemburg wrote: On 23.01.2015 19:48, Matthias Klose wrote: > On

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-24 Thread Zachary Ware
On Saturday, January 24, 2015, Brett Cannon wrote: > On Fri Jan 23 2015 at 5:45:28 PM Gregory P. Smith > wrote: > >> On Fri Jan 23 2015 at 11:20:02 AM M.-A. Lemburg > > wrote: >> >>> On 23.01.2015 19:48, Matthias Klose wrote: >>> > On 01/23/2015 06:30 PM, Cyd Haselton wrote: >>> >> Related to my

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-24 Thread M.-A. Lemburg
On 24.01.2015 21:23, Zachary Ware wrote: > On Saturday, January 24, 2015, Brett Cannon wrote: > >> On Fri Jan 23 2015 at 5:45:28 PM Gregory P. Smith > > wrote: >> >>> On Fri Jan 23 2015 at 11:20:02 AM M.-A. Lemburg >> > wrote: >>> On 23.01.2015 19:48, Matthias Klose wrote: > On 01/23/201

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-24 Thread Brett Cannon
On Fri Jan 23 2015 at 5:45:28 PM Gregory P. Smith wrote: > On Fri Jan 23 2015 at 11:20:02 AM M.-A. Lemburg wrote: > >> On 23.01.2015 19:48, Matthias Klose wrote: >> > On 01/23/2015 06:30 PM, Cyd Haselton wrote: >> >> Related to my earlier question regarding building Python on Android >> >> and a

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-24 Thread Cyd Haselton
On Fri, Jan 23, 2015 at 12:48 PM, Matthias Klose wrote: > On 01/23/2015 06:30 PM, Cyd Haselton wrote: >> Related to my earlier question regarding building Python on Android >> and an undefined reference to dlopen error...I have the following >> question: Is it possible to build and install Python

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-24 Thread Cyd Haselton
On Fri, Jan 23, 2015 at 12:48 PM, Matthias Klose wrote: > On 01/23/2015 06:30 PM, Cyd Haselton wrote: >> Related to my earlier question regarding building Python on Android >> and an undefined reference to dlopen error...I have the following >> question: Is it possible to build and install Python

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-23 Thread Gregory P. Smith
On Fri Jan 23 2015 at 11:20:02 AM M.-A. Lemburg wrote: > On 23.01.2015 19:48, Matthias Klose wrote: > > On 01/23/2015 06:30 PM, Cyd Haselton wrote: > >> Related to my earlier question regarding building Python on Android > >> and an undefined reference to dlopen error...I have the following > >>

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-23 Thread Cyd Haselton
On Fri, Jan 23, 2015 at 1:19 PM, M.-A. Lemburg wrote: > On 23.01.2015 19:48, Matthias Klose wrote: >> On 01/23/2015 06:30 PM, Cyd Haselton wrote: >>> Related to my earlier question regarding building Python on Android >>> and an undefined reference to dlopen error...I have the following >>> questi

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-23 Thread M.-A. Lemburg
On 23.01.2015 21:56, Cyd Haselton wrote: > On Fri, Jan 23, 2015 at 1:19 PM, M.-A. Lemburg wrote: >> On 23.01.2015 19:48, Matthias Klose wrote: >>> On 01/23/2015 06:30 PM, Cyd Haselton wrote: Related to my earlier question regarding building Python on Android and an undefined reference to

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-23 Thread M.-A. Lemburg
On 23.01.2015 19:48, Matthias Klose wrote: > On 01/23/2015 06:30 PM, Cyd Haselton wrote: >> Related to my earlier question regarding building Python on Android >> and an undefined reference to dlopen error...I have the following >> question: Is it possible to build and install Python without havin

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-23 Thread Cyd Haselton
On Fri, Jan 23, 2015 at 12:48 PM, Matthias Klose wrote: > On 01/23/2015 06:30 PM, Cyd Haselton wrote: >> Related to my earlier question regarding building Python on Android >> and an undefined reference to dlopen error...I have the following >> question: Is it possible to build and install Python

Re: [Python-Dev] Can Python Be Built Without Distutils

2015-01-23 Thread Matthias Klose
On 01/23/2015 06:30 PM, Cyd Haselton wrote: > Related to my earlier question regarding building Python on Android > and an undefined reference to dlopen error...I have the following > question: Is it possible to build and install Python without having > to build and install...or use...distutils? >

[Python-Dev] Can Python Be Built Without Distutils

2015-01-23 Thread Cyd Haselton
Related to my earlier question regarding building Python on Android and an undefined reference to dlopen error...I have the following question: Is it possible to build and install Python without having to build and install...or use...distutils? Some background: I can build the python interpreter