diff mbox series

[meta-python,4/4] python3-pikepdf: Fix cross build with scikit-build-core

Message ID 20260709063251.3218170-4-khem.raj@oss.qualcomm.com
State New
Headers show
Series [meta-python,1/4] python3-httptools: Relax setuptools upper bound in build requirements | expand

Commit Message

Khem Raj July 9, 2026, 6:32 a.m. UTC
do_compile failed to find ninja, and after providing it CMake's C++20
module dependency scanning (clang-scan-deps) failed in the cross
environment with "'cstddef' file not found".

Add ninja-native and python3-scikit-build-core-native to DEPENDS so the
--no-isolation build finds its build tools, and disable C++20 module
scanning via CMAKE_ARGS since pikepdf uses the C++20 language but no
named modules.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
---
 .../recipes-devtools/python/python3-pikepdf_10.9.1.bb      | 7 +++++++
 1 file changed, 7 insertions(+)
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-pikepdf_10.9.1.bb b/meta-python/recipes-devtools/python/python3-pikepdf_10.9.1.bb
index 2482e8913a..a0ab6f275a 100644
--- a/meta-python/recipes-devtools/python/python3-pikepdf_10.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pikepdf_10.9.1.bb
@@ -9,6 +9,11 @@  SRC_URI += "file://0001-pyproject.toml-Do-not-strip.patch"

 inherit pypi python_setuptools_build_meta

+# pikepdf uses the C++20 language but no C++20 named modules. CMake's module
+# dependency scanning (clang-scan-deps) does not work in the cross environment,
+# so turn it off.
+export CMAKE_ARGS = "-DCMAKE_CXX_SCAN_FOR_MODULES=OFF"
+
 PYPI_PACKAGE = "pikepdf"

 CVE_PRODUCT = "pikepdf"
@@ -16,6 +21,8 @@  CVE_PRODUCT = "pikepdf"
 DEPENDS += " \
 	python3-pybind11-native \
         python3-nanobind-native \
+	python3-scikit-build-core-native \
+	ninja-native \
 	qpdf \
 "