Re: [PATCH 1/4] perf tools: pass PYTHON config to feature detection

2017-02-07 Thread David Carrillo-Cisneros
On Tue, Feb 7, 2017 at 11:47 AM, Arnaldo Carvalho de Melo wrote: > Em Wed, Feb 01, 2017 at 10:38:01PM -0800, David Carrillo-Cisneros escreveu: >> Python's CC and link Makefile variables were not passed to feature >> detection, causing feature detection to use system's Python rather than >> PYTHON_

Re: [PATCH 1/4] perf tools: pass PYTHON config to feature detection

2017-02-07 Thread Arnaldo Carvalho de Melo
Em Wed, Feb 01, 2017 at 10:38:01PM -0800, David Carrillo-Cisneros escreveu: > Python's CC and link Makefile variables were not passed to feature > detection, causing feature detection to use system's Python rather than > PYTHON_CONFIG's one. This created a mismatch between the detected Python > sup

Re: [PATCH 1/4] perf tools: pass PYTHON config to feature detection

2017-02-06 Thread Namhyung Kim
On Mon, Feb 06, 2017 at 10:19:30AM -0300, Arnaldo Carvalho de Melo wrote: > Em Wed, Feb 01, 2017 at 10:38:01PM -0800, David Carrillo-Cisneros escreveu: > > Python's CC and link Makefile variables were not passed to feature > > detection, causing feature detection to use system's Python rather than

Re: [PATCH 1/4] perf tools: pass PYTHON config to feature detection

2017-02-06 Thread Arnaldo Carvalho de Melo
Em Wed, Feb 01, 2017 at 10:38:01PM -0800, David Carrillo-Cisneros escreveu: > Python's CC and link Makefile variables were not passed to feature > detection, causing feature detection to use system's Python rather than > PYTHON_CONFIG's one. This created a mismatch between the detected Python > sup

[PATCH 1/4] perf tools: pass PYTHON config to feature detection

2017-02-01 Thread David Carrillo-Cisneros
Python's CC and link Makefile variables were not passed to feature detection, causing feature detection to use system's Python rather than PYTHON_CONFIG's one. This created a mismatch between the detected Python support and the one actually used by perf when PYTHON_CONFIG is specified. Fix it by m