summaryrefslogtreecommitdiffstats
path: root/meta-python/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/classes')
-rw-r--r--meta-python/classes/pyo3.bbclass30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/classes/pyo3.bbclass b/meta-python/classes/pyo3.bbclass
new file mode 100644
index 0000000000..6ce21329c2
--- /dev/null
+++ b/meta-python/classes/pyo3.bbclass
@@ -0,0 +1,30 @@
1#
2# This class helps make sure that Python extensions built with PyO3
3# and setuptools_rust properly set up the environment for cross compilation
4#
5
6inherit cargo python3-dir siteinfo
7
8export PYO3_CROSS="1"
9export PYO3_CROSS_PYTHON_VERSION="${PYTHON_BASEVERSION}"
10export PYO3_CROSS_LIB_DIR="${STAGING_LIBDIR}"
11export CARGO_BUILD_TARGET="${HOST_SYS}"
12export RUSTFLAGS
13export PYO3_PYTHON="${PYTHON}"
14export PYO3_CONFIG_FILE="${WORKDIR}/pyo3.config"
15
16pyo3_do_configure () {
17 cat > ${WORKDIR}/pyo3.config << EOF
18implementation=CPython
19version=${PYTHON_BASEVERSION}
20shared=true
21abi3=false
22lib_name=${PYTHON_DIR}
23lib_dir=${STAGING_LIBDIR}
24pointer_width=${SITEINFO_BITS}
25build_flags=WITH_THREAD
26suppress_build_script_link_lines=false
27EOF
28}
29
30EXPORT_FUNCTIONS do_configure