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.

Author Dennis Sweeney
Recipients Dennis Sweeney, eric.snow, gvanrossum, kumaraditya
Date 2022-03-21.04:49:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1647838179.48.0.276173114424.issue46712@roundup.psfhosted.org>
In-reply-to
Content
In bpo-47067, there was concern about the addition of the makefile target from PR 31637:

    regen-global-objects: regen-deepfreeze

After a new `&_Py_ID(__orig_class__)` is added to Objects/genericaliasobject.c, running `make regen-global-objects` starts

    gcc -pthread -c [snipped] -DPy_BUILD_CORE -o Objects/genericaliasobject.o Objects/genericaliasobject.c

which fails with a compilation error because that identifier is not yet defined. Is there a good way to convince `make` to regenerate the global objects without this sort of circular dependency? Am I missing a step?
History
Date User Action Args
2022-03-21 04:49:39Dennis Sweeneysetrecipients: + Dennis Sweeney, gvanrossum, eric.snow, kumaraditya
2022-03-21 04:49:39Dennis Sweeneysetmessageid: <1647838179.48.0.276173114424.issue46712@roundup.psfhosted.org>
2022-03-21 04:49:39Dennis Sweeneylinkissue46712 messages
2022-03-21 04:49:39Dennis Sweeneycreate