From a5f9c9ad559a0b6faed540fe237b4ee4e226ac87 Mon Sep 17 00:00:00 2001 From: ryanking13 Date: Wed, 12 Nov 2025 16:31:09 +0900 Subject: [PATCH] Remove STDLIB_CFLAGS --- pyodide_build/config.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyodide_build/config.py b/pyodide_build/config.py index a9b01959..0f24b1a6 100644 --- a/pyodide_build/config.py +++ b/pyodide_build/config.py @@ -177,7 +177,6 @@ def _get_make_environment_vars(self) -> Mapping[str, str]: "cflags": "SIDE_MODULE_CFLAGS", "cxxflags": "SIDE_MODULE_CXXFLAGS", "ldflags": "SIDE_MODULE_LDFLAGS", - "stdlib_module_cflags": "STDLIB_MODULE_CFLAGS", "sysconfigdata_dir": "SYSCONFIGDATA_DIR", "sysconfig_name": "SYSCONFIG_NAME", "targetinstalldir": "TARGETINSTALLDIR", @@ -254,8 +253,6 @@ def _get_make_environment_vars(self) -> Mapping[str, str]: "pyo3_cross_lib_dir": "$(CPYTHONINSTALL)/sysconfigdata", # FIXME: pyodide xbuildenv stores sysconfigdata here "pyo3_cross_include_dir": "$(PYTHONINCLUDE)", "pyo3_cross_python_version": "$(PYMAJOR).$(PYMINOR)", - # Misc - "stdlib_module_cflags": "$(CFLAGS_BASE) -I$(PYTHONINCLUDE) -I Include/ -I. -IInclude/internal/", # TODO: remove this # Paths to build dependencies "host_install_dir": "$(PYODIDE_ROOT)/packages/.artifacts", "host_site_packages": "$(PYODIDE_ROOT)/packages/.artifacts/lib/python$(PYMAJOR).$(PYMINOR)/site-packages",