diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-13 09:11:29 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-16 08:48:08 +0000 |
| commit | f920fa55e5e936a304cebfa9e059199078f7c909 (patch) | |
| tree | b97aeba95d44a600a5e7f8dc415c149242f599be /meta/classes/python_pyo3.bbclass | |
| parent | 3d904dd505dac226aedf3ac96afe254b9c4fb975 (diff) | |
| download | poky-f920fa55e5e936a304cebfa9e059199078f7c909.tar.gz | |
py3o: Rename to python_py3o
(From OE-Core rev: e9b030eab6d4c18482aaa7f0166686e16ba8e779)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/python_pyo3.bbclass')
| -rw-r--r-- | meta/classes/python_pyo3.bbclass | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/classes/python_pyo3.bbclass b/meta/classes/python_pyo3.bbclass new file mode 100644 index 0000000000..10cc3a0645 --- /dev/null +++ b/meta/classes/python_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 | |||
| 6 | inherit cargo python3-dir siteinfo | ||
| 7 | |||
| 8 | export PYO3_CROSS="1" | ||
| 9 | export PYO3_CROSS_PYTHON_VERSION="${PYTHON_BASEVERSION}" | ||
| 10 | export PYO3_CROSS_LIB_DIR="${STAGING_LIBDIR}" | ||
| 11 | export CARGO_BUILD_TARGET="${HOST_SYS}" | ||
| 12 | export RUSTFLAGS | ||
| 13 | export PYO3_PYTHON="${PYTHON}" | ||
| 14 | export PYO3_CONFIG_FILE="${WORKDIR}/pyo3.config" | ||
| 15 | |||
| 16 | python_pyo3_do_configure () { | ||
| 17 | cat > ${WORKDIR}/pyo3.config << EOF | ||
| 18 | implementation=CPython | ||
| 19 | version=${PYTHON_BASEVERSION} | ||
| 20 | shared=true | ||
| 21 | abi3=false | ||
| 22 | lib_name=${PYTHON_DIR} | ||
| 23 | lib_dir=${STAGING_LIBDIR} | ||
| 24 | pointer_width=${SITEINFO_BITS} | ||
| 25 | build_flags=WITH_THREAD | ||
| 26 | suppress_build_script_link_lines=false | ||
| 27 | EOF | ||
| 28 | } | ||
| 29 | |||
| 30 | EXPORT_FUNCTIONS do_configure | ||
