[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread Andrei Kulakov
Andrei Kulakov added the comment: I agree re: 3.9, thanks Ned! -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread Ned Deily
Ned Deily added the comment: Thanks for the report, @ux, and thanks for the PR, Andrei! I've backported the fix for release in 3.10.1 but I think it's pretty late in 3.9's release cycle and we've lived this long with the issue. -- resolution: -> fixed stage: patch review ->

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread miss-islington
miss-islington added the comment: New changeset b1949e0b58714724a3105cad3ad1b61384688da7 by Miss Islington (bot) in branch '3.10': [3.10] bpo-45221: Fix handling of LDFLAGS and CPPFLAGS options in setup.py (GH-29031) (GH-29037)

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +27308 pull_request: https://github.com/python/cpython/pull/29037 ___ Python tracker

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread Ned Deily
Ned Deily added the comment: New changeset 6a533a423869e28d9086cf4d79029f59e9eec916 by andrei kulakov in branch 'main': bpo-45221: Fix handling of LDFLAGS and CPPFLAGS options in setup.py (GH-29031) https://github.com/python/cpython/commit/6a533a423869e28d9086cf4d79029f59e9eec916

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread Andrei Kulakov
Andrei Kulakov added the comment: Inada: adding you as you merged the patch that made the switch optparse->argparse. -- nosy: +methane ___ Python tracker ___

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread Ken Jin
Ken Jin added the comment: @ux, could you please provide more information? What platform are you on, and what compiler version produces this error? -- nosy: +christian.heimes ___ Python tracker

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread Ned Deily
Change by Ned Deily : -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread Andrei Kulakov
Change by Andrei Kulakov : -- nosy: +kj ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-10-18 Thread Andrei Kulakov
Change by Andrei Kulakov : -- keywords: +patch nosy: +andrei.avk nosy_count: 1.0 -> 2.0 pull_requests: +27303 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29031 ___ Python tracker

[issue45221] Linker flags starting with -h breaks setup.py (regression)

2021-09-16 Thread ux
New submission from ux : Hi, Since 3.8 (included), the following build command fails: LDFLAGS=-headerpad_max_install_names ./configure make With the following error: setup.py: error: argument -h/--help: ignored explicit argument 'eaderpad_max_install_names' A quick hack in