René's URL Explorer Experiment


Title: Python fails to build on WASM: _testcapi/vectorcall_limited.c is built with Py_BUILD_CORE_BUILTIN · Issue #109723 · python/cpython · GitHub

Open Graph Title: Python fails to build on WASM: _testcapi/vectorcall_limited.c is built with Py_BUILD_CORE_BUILTIN · Issue #109723 · python/cpython

X Title: Python fails to build on WASM: _testcapi/vectorcall_limited.c is built with Py_BUILD_CORE_BUILTIN · Issue #109723 · python/cpython

Description: My PR #109690 broke WASM buildbots. Example with wasm32-emscripten node (dynamic linking) 3.x: https://buildbot.python.org/all/#/builders/1056/builds/3142 /opt/emsdk/upstream/emscripten/emcc -DNDEBUG -g -O3 (...) -DPy_BUILD_CORE_BUILTIN ...

Open Graph Description: My PR #109690 broke WASM buildbots. Example with wasm32-emscripten node (dynamic linking) 3.x: https://buildbot.python.org/all/#/builders/1056/builds/3142 /opt/emsdk/upstream/emscripten/emcc -DNDEB...

X Description: My PR #109690 broke WASM buildbots. Example with wasm32-emscripten node (dynamic linking) 3.x: https://buildbot.python.org/all/#/builders/1056/builds/3142 /opt/emsdk/upstream/emscripten/emcc -DNDEB...

Opengraph URL: https://github.com/python/cpython/issues/109723

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Python fails to build on WASM: _testcapi/vectorcall_limited.c is built with Py_BUILD_CORE_BUILTIN","articleBody":"My PR #109690 broke WASM buildbots.\r\n\r\nExample with wasm32-emscripten node (dynamic linking) 3.x: https://buildbot.python.org/all/#/builders/1056/builds/3142\r\n\r\n```\r\n/opt/emsdk/upstream/emscripten/emcc  -DNDEBUG -g -O3 (...) -DPy_BUILD_CORE_BUILTIN -c ../../Modules/_testcapi/vectorcall_limited.c -o Modules/_testcapi/vectorcall_limited.o\r\n\r\nIn file included from ../../Modules/_testcapi/vectorcall_limited.c:2:\r\nIn file included from ../../Modules/_testcapi/parts.h:7:\r\nIn file included from ../../Include/Python.h:44:\r\n../../Include/pyport.h:52:4: error: \"Py_LIMITED_API is not compatible with Py_BUILD_CORE\"\r\n#  error \"Py_LIMITED_API is not compatible with Py_BUILD_CORE\"\r\n   ^\r\n1 error generated.\r\n```\r\n\r\nI'm not sure how ``-DPy_BUILD_CORE_BUILTIN`` landed in the command building ``Modules/_testcapi/vectorcall_limited.c``.\r\n\r\nI don't think that it's correct that ``vectorcall_limited.c`` which tests the limited C API on purpose it built with ``Py_BUILD_CORE``.\r\n\r\nOn my Linux machine, Makefile contains:\r\n\r\n```\r\nModules/_testcapi/vectorcall_limited.o: $(srcdir)/Modules/_testcapi/vectorcall_limited.c $(MODULE__TESTCAPI_DEPS) $(MODULE_DEPS_SHARED) $(PYTHON_HEADERS); $(CC) $(MODULE__TESTCAPI_CFLAGS) $(PY_STDMODULE_CFLAGS) $(CCSHARED) -c $(srcdir)/Modules/_testcapi/vectorcall_limited.c -o Modules/_testcapi/vectorcall_limited.o\r\n```\r\n\r\nSo it gets two groups of compiler flags:\r\n\r\n* ``MODULE__TESTCAPI_CFLAGS``: not defined (empty)\r\n* ``PY_STDMODULE_CFLAGS``: ``-fno-strict-overflow -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -Og -Wall -O0   -std=c11 -Werror=implicit-function-declaration -fvisibility=hidden  -I./Include/internal  -I. -I./Include``\r\n\r\nI don't see ``-DPy_BUILD_CORE_BUILTIN`` here.\r\n\r\nI can reproduce the issue locally with this custom ``Modules/Setup.local``:\r\n\r\n```\r\n*static*\r\n_testcapi _testcapimodule.c _testcapi/vectorcall.c _testcapi/vectorcall_limited.c _testcapi/heaptype.c _testcapi/abstract.c _testcapi/unicode.c _testcapi/dict.c _testcapi/getargs.c _testcapi/datetime.c _testcapi/docstring.c _testcapi/mem.c _testcapi/watchers.c _testcapi/long.c _testcapi/float.c _testcapi/structmember.c _testcapi/exceptions.c _testcapi/code.c _testcapi/buffer.c _testcapi/pyatomic.c _testcapi/pyos.c _testcapi/immortal.c _testcapi/heaptype_relative.c _testcapi/gc.c\r\n```\r\n\r\nmake fails with:\r\n\r\n```\r\nIn file included from ./Include/Python.h:44,\r\n                 from ./Modules/_testcapi/parts.h:7,\r\n                 from ./Modules/_testcapi/vectorcall_limited.c:2:\r\n./Include/pyport.h:52:4: error: #error \"Py_LIMITED_API is not compatible with Py_BUILD_CORE\"\r\n   52 | #  error \"Py_LIMITED_API is not compatible with Py_BUILD_CORE\"\r\n      |    ^~~~~\r\nmake: *** [Makefile:2982: Modules/_testcapi/vectorcall_limited.o] Error 1\r\nmake: *** Waiting for unfinished jobs....\r\nIn file included from ./Include/Python.h:44,\r\n                 from ./Modules/_testcapi/parts.h:7,\r\n                 from ./Modules/_testcapi/heaptype_relative.c:2:\r\n./Include/pyport.h:52:4: error: #error \"Py_LIMITED_API is not compatible with Py_BUILD_CORE\"\r\n   52 | #  error \"Py_LIMITED_API is not compatible with Py_BUILD_CORE\"\r\n      |    ^~~~~\r\nmake: *** [Makefile:3001: Modules/_testcapi/heaptype_relative.o] Error 1\r\n```\r\n\r\n``Modules/makesetup`` uses ``$(PY_STDMODULE_CFLAGS)`` if ``$doconfig`` is no, but uses ``$(PY_BUILTIN_MODULE_CFLAGS)`` otherwise. In the second case, $(PY_BUILTIN_MODULE_CFLAGS) adds ``-DPy_BUILD_CORE_BUILTIN`` to compiler command used to build ``_testcapi`` C files.\n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-109727\n* gh-109842\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/vstinner","@type":"Person","name":"vstinner"},"datePublished":"2023-09-22T12:22:03.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/109723/cpython/issues/109723"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:7ccdb5bb-e714-c471-02fc-ac7c8925536d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA9BE:2D2FEF:18E104F:216D200:6969AD4E
html-safe-nonce4fe50bb99a6ac95ebaef36d2fe794d38401fc9a73c5298445c12e2ba4209e04a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBOUJFOjJEMkZFRjoxOEUxMDRGOjIxNkQyMDA6Njk2OUFENEUiLCJ2aXNpdG9yX2lkIjoiMzY3NTQyMjI5Mzk5OTg1Njk3NCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac6f951ad57dc7ece6681d4b3a781f0d2cf6bb4114d01b11ca8837b87f6011445e
hovercard-subject-tagissue:1908807608
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/python/cpython/109723/issue_layout
twitter:imagehttps://opengraph.githubassets.com/65a51704c7868240241b5bcbb38abcb9001531aca339e17e075dea654129d5df/python/cpython/issues/109723
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/65a51704c7868240241b5bcbb38abcb9001531aca339e17e075dea654129d5df/python/cpython/issues/109723
og:image:altMy PR #109690 broke WASM buildbots. Example with wasm32-emscripten node (dynamic linking) 3.x: https://buildbot.python.org/all/#/builders/1056/builds/3142 /opt/emsdk/upstream/emscripten/emcc -DNDEB...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamevstinner
hostnamegithub.com
expected-hostnamegithub.com
None24c4c97a2d520cb286b35e1a4c22d7a4df3c26a2fa28dd7cdf0e65db327b4de7
turbo-cache-controlno-preview
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release124667f43168afb6c9c03b7c02eb5b1d2e1be3d9
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/109723#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F109723
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F109723
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/issues/109723
Reloadhttps://github.com/python/cpython/issues/109723
Reloadhttps://github.com/python/cpython/issues/109723
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/109723
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 33.9k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 71.1k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.1k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects 31 https://github.com/python/cpython/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/python/cpython/security
Please reload this pagehttps://github.com/python/cpython/issues/109723
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/109723
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/109723
Python fails to build on WASM: _testcapi/vectorcall_limited.c is built with Py_BUILD_CORE_BUILTINhttps://github.com/python/cpython/issues/109723#top
buildThe build process and cross-buildhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22build%22
https://github.com/vstinner
https://github.com/vstinner
vstinnerhttps://github.com/vstinner
on Sep 22, 2023https://github.com/python/cpython/issues/109723#issue-1908807608
#109690https://github.com/python/cpython/pull/109690
https://buildbot.python.org/all/#/builders/1056/builds/3142https://buildbot.python.org/all/#/builders/1056/builds/3142
gh-109723: Disable Py_BUILD_CORE in _testcapi #109727https://github.com/python/cpython/pull/109727
gh-109723: Fix build of _testclinic_limited on WASM #109842https://github.com/python/cpython/pull/109842
buildThe build process and cross-buildhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22build%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.