[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2022-01-17 Thread Irit Katriel
Irit Katriel added the comment: I'm closing because the original issue was fixed and testing out of tree build issue is the subject of Issue45695. -- nosy: +iritkatriel resolution: -> fixed stage: needs patch -> resolved status: open -> closed

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-12-20 Thread Zachary Ware
Zachary Ware added the comment: > I don't like to hijack this issue but could we get some of the build bots to > do their builds in a subfolder? The buildmaster config is at https://github.com/python/buildmaster-config, feel free to submit a pull request that sets the

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-12-20 Thread Neil Schemenauer
Neil Schemenauer added the comment: Thanks for fixing this. I always do my builds in subfolders as well. It is handy to have multiple builds (debug, opt, profiled) that all use a single source tree. I don't like to hijack this issue but could we get some of the

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-05-27 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 178418ad6791b6ef5ba610ed93fab75fc1567ad2 by Gregory P. Smith in branch 'master': bpo-30492: Allow make clinic to work out of tree. (#1836) https://github.com/python/cpython/commit/178418ad6791b6ef5ba610ed93fab75fc1567ad2 --

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-05-27 Thread Gregory P. Smith
Gregory P. Smith added the comment: My PR doesn't address the potential issue of needing to have done a make all before doing a make clinic. I'll leave that for something else, there could be bootstrapping issues in that situation depending on what the developer is doing. In that less common

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-05-27 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- pull_requests: +1920 ___ Python tracker ___ ___

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-05-27 Thread Gregory P. Smith
Gregory P. Smith added the comment: The Makefile knows where the source tree is, I think we can make it tell clinic.py. Let me whip something up. -- ___ Python tracker

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-05-27 Thread Larry Hastings
Larry Hastings added the comment: I don't know how to fix it. "make clinic" needs to be run in-tree anyway as it's modifying the C source code in place. Can you suggest a patch? -- ___ Python tracker

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-05-27 Thread Gregory P. Smith
New submission from Gregory P. Smith: I never do in-tree builds anymore because they make me feel dirty and leave build artifacts cluttering up my source tree. make clinic does not work for out of tree builds. To reproduce: ~$ git clone ...cpython repo... ~$ mkdir build && cd build ~/build$