[issue28643] Broken makefile depends for profile-opt target

2018-07-16 Thread Neil Schemenauer
Neil Schemenauer added the comment: Closing this as the current makefile works much better in this regard, at least based on my experience. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue28643] Broken makefile depends for profile-opt target

2017-11-06 Thread Neil Schemenauer
Neil Schemenauer added the comment: The previous behavior nearly drove me to drink. At least on my machine (and I have a relatively fast one), the profile-opt build takes a long time. After running "make" and checking things over, running "make install" will cause

[issue28643] Broken makefile depends for profile-opt target

2017-11-06 Thread STINNER Victor
STINNER Victor added the comment: Oh, I had this bug and I'm quite sure that I reported it, but I cannot find it anymore :-) -- nosy: +haypo ___ Python tracker

[issue28643] Broken makefile depends for profile-opt target

2017-11-02 Thread Neil Schemenauer
Neil Schemenauer added the comment: New changeset 4e38d71a2b7b606fb1b0078c2d7014fc24044dac by Neil Schemenauer in branch 'master': bpo-28643: Record profile-opt build progress with stamp files (#4223)

[issue28643] Broken makefile depends for profile-opt target

2017-11-01 Thread Neil Schemenauer
Change by Neil Schemenauer : -- keywords: +patch pull_requests: +4191 ___ Python tracker ___

[issue28643] Broken makefile depends for profile-opt target

2017-04-07 Thread Douglas Greiman
Changes by Douglas Greiman : -- nosy: +dgreiman ___ Python tracker ___ ___

[issue28643] Broken makefile depends for profile-opt target

2016-11-09 Thread Brett Cannon
Changes by Brett Cannon : -- stage: needs patch -> patch review ___ Python tracker ___ ___

[issue28643] Broken makefile depends for profile-opt target

2016-11-09 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: +brett.cannon, gregory.p.smith ___ Python tracker ___

[issue28643] Broken makefile depends for profile-opt target

2016-11-08 Thread Neil Schemenauer
Neil Schemenauer added the comment: Okay, my initial idea was wrong (I blame years of not having to look at Makefiles). I think the attached patch works. It uses a "stamp" file to record the fact that the profiled build is complete. The fix is sub-optimal because changing some source code

[issue28643] Broken makefile depends for profile-opt target

2016-11-08 Thread Neil Schemenauer
New submission from Neil Schemenauer: I notice that after running "make" then running "make install", the build will go through the whole compile/profile/compile process again. This is really infuriating behaviour, given the extremely long make time for the profiled optimized build. The