[issue40069] Clear .lst files for AIX

2020-03-30 Thread David Edelsohn
David Edelsohn added the comment: Likely somewhere in the Python configuration process it is probing a command line option that emits a .lst file. -- ___ Python tracker ___

[issue40069] Clear .lst files for AIX

2020-03-30 Thread Michael Felt
Michael Felt added the comment: FYI: IMHO it is artifact of the way an xlc compiler is setup. Maybe this is a new default (I see they changed the names of config files). On my server (with xlc v11) I do not get them, but on a different server (with xlc v13) I do get .lst files. So, seems

[issue40069] Clear .lst files for AIX

2020-03-26 Thread STINNER Victor
STINNER Victor added the comment: Ok. I merged your PR. I don't think that it's worth it to backport to 3.7 and 3.8. "git clean -fdx" can be used for stable branches to remove *all* files not tracked by Git (not only .lst files). -- resolution: -> fixed stage: patch review ->

[issue40069] Clear .lst files for AIX

2020-03-26 Thread STINNER Victor
STINNER Victor added the comment: New changeset 1b6b0e78fef2549cc9b447cbededb638f7388e02 by Batuhan Taşkaya in branch 'master': bpo-40069: Clear out .lst files on make clean (GH-19169) https://github.com/python/cpython/commit/1b6b0e78fef2549cc9b447cbededb638f7388e02 --

[issue40069] Clear .lst files for AIX

2020-03-26 Thread Batuhan Taskaya
Batuhan Taskaya added the comment: > .lst files are not created by default (by Python configure and make). They are an artifact when I configure with xlc (CC=xlc ./configure && make -j24), and as far as I know we already have some compiler-specific clear conditions. --

[issue40069] Clear .lst files for AIX

2020-03-26 Thread Michael Felt
Michael Felt added the comment: the XLC compiler has an option to create "listing" files. The content depends on the arguments passed to the xlc compilers. >From memory (as I always need to look them up) these include -qinfo and >-qsource (plus arguments) FYI: besides showing info such as

[issue40069] Clear .lst files for AIX

2020-03-25 Thread STINNER Victor
STINNER Victor added the comment: What are these .lst files? What creates them? -- nosy: +vstinner ___ Python tracker ___ ___

[issue40069] Clear .lst files for AIX

2020-03-25 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +Michael.Felt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40069] Clear .lst files for AIX

2020-03-25 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- keywords: +patch pull_requests: +18528 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19169 ___ Python tracker ___

[issue40069] Clear .lst files for AIX

2020-03-25 Thread Batuhan Taskaya
New submission from Batuhan Taskaya : AIX files stay even if we run make clean on the directory, I think they should be cleared -- components: Build messages: 365026 nosy: BTaskaya, David.Edelsohn priority: normal severity: normal status: open title: Clear .lst files for AIX type: