Re: [OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-28 Thread Ross Burton
On 24/10/2019 19:25, Nick Owens wrote: i see, it looks like i should apply this to distutils3.bbclass and not distutils.bbclass, since python2 never got support for --parallel. does that seem right? Yes. Ross -- ___ Openembedded-core mailing list

Re: [OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-24 Thread Nick Owens
i see, it looks like i should apply this to distutils3.bbclass and not distutils.bbclass, since python2 never got support for --parallel. does that seem right? On Thu, Oct 24, 2019 at 1:21 AM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Wed, 2019-10-23 at 10:59 -0700, Nick

Re: [OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-24 Thread Richard Purdie
On Wed, 2019-10-23 at 10:59 -0700, Nick Owens wrote: > parallel builds for native code in python modules was added about 5 > years ago. distutils understands '-j N', so just pass along > the right argument to setup.py build. > > Signed-off-by: Nick Owens > --- > meta/classes/distutils.bbclass |

[OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-23 Thread Nick Owens
parallel builds for native code in python modules was added about 5 years ago. distutils understands '-j N', so just pass along the right argument to setup.py build. Signed-off-by: Nick Owens --- meta/classes/distutils.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-23 Thread Ross Burton
On 23/10/2019 00:59, Nick Owens wrote: parallel builds for native code in python modules was added about 5 years ago. distutils understands '-j N', so just pass along ${PARALLEL_MAKE} to setup.py build. Does distutils *only* understand -j? It's not unusual to set PARALLEL_MAKE to something

[OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-22 Thread Nick Owens
parallel builds for native code in python modules was added about 5 years ago. distutils understands '-j N', so just pass along ${PARALLEL_MAKE} to setup.py build. Signed-off-by: Nick Owens --- meta/classes/distutils.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git