This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Build with dtrace is broken on some systems
Type: Stage: resolved
Components: Build Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: kulikjak, miss-islington
Priority: normal Keywords: patch

Created on 2019-06-10 13:22 by kulikjak, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 13939 closed kulikjak, 2019-06-10 13:29
PR 13940 merged christian.heimes, 2019-06-10 13:33
PR 13942 merged miss-islington, 2019-06-10 15:20
Messages (3)
msg345128 - (view) Author: Jakub Kulik (kulikjak) * Date: 2019-06-10 13:22
After the integration of https://bugs.python.org/issue36842, build with dtrace is broken on systems where files that reference DTrace probes need to be modified in-place by dtrace (e.g., Solaris).

The reason for that is that Python/sysmodule.o, which newly contains some dtrace references, was not added to DTRACE_DEPS.
msg345130 - (view) Author: miss-islington (miss-islington) Date: 2019-06-10 15:19
New changeset 8a8b59c9794674b50b2242698c29038034f4864c by Miss Islington (bot) (Christian Heimes) in branch 'master':
bpo-37215: Fix dtrace issue introduce by bpo-36842 (GH-13940)
https://github.com/python/cpython/commit/8a8b59c9794674b50b2242698c29038034f4864c
msg345132 - (view) Author: miss-islington (miss-islington) Date: 2019-06-10 15:38
New changeset bac6e63fd63960a1ab862befab42de05d32667c2 by Miss Islington (bot) in branch '3.8':
bpo-37215: Fix dtrace issue introduce by bpo-36842 (GH-13940)
https://github.com/python/cpython/commit/bac6e63fd63960a1ab862befab42de05d32667c2
History
Date User Action Args
2022-04-11 14:59:16adminsetgithub: 81396
2019-06-11 12:29:53kulikjaksetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-06-10 15:38:31miss-islingtonsetmessages: + msg345132
2019-06-10 15:20:13miss-islingtonsetpull_requests: + pull_request13809
2019-06-10 15:19:56miss-islingtonsetnosy: + miss-islington
messages: + msg345130
2019-06-10 13:33:55christian.heimessetpull_requests: + pull_request13807
2019-06-10 13:29:33kulikjaksetkeywords: + patch
stage: patch review
pull_requests: + pull_request13806
2019-06-10 13:22:54kulikjakcreate