pybind / pybind/python_example
yocto recipe for this example
未關閉
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 530
- 分支
- 150
- 平均合併
- 8 天 2 小時
- 30 天內合併 PR
- 1
描述
I have a very basic idea about Yocto. I have added python3-pybind11 package into IMAGE_INSTALL and I checked if it is in the target:
root@qemuarm64:~# python3
Python 3.8.18 (default, Aug 24 2023, 19:48:18)
[GCC 9.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pybind11
>>> pybind11.__version__
'2.4.3'
The version is a bit old. Anyway I have changed pyproject.toml by lowering the version in the example:
[build-system]
requires = [
"setuptools>=42",
"pybind11>=2.4.0", # << changed this
]
...
With this change, I still can build and run the example locally.
I created this recipe by devtool add:
SUMMARY = "A test project using pybind11"
HOMEPAGE = "https://github.com/pybind/python_example"
LICENSE = "Unknown"
LIC_FILES_CHKSUM = "file://LICENSE;md5=153b3e05cd731791777324af9f7219b3"
SRC_URI = "git://git@gitlab.com/sharedlib/python-example-pybind.git;protocol=ssh;branch=master"
PV = "1.0+git${SRCPV}"
SRCREV = "e2350ed9dad1c5b424f840c21079d51976463e41"
S = "${WORKDIR}/git"
inherit setuptools3
RDEPENDS_${PN} += "python3-pybind11"
FILES_${PN} += "/usr/lib/"
And I got this error:
ERROR: python-example-1.0+git999-r0 do_compile: 'python3 setup.py build ' execution failed.
ERROR: python-example-1.0+git999-r0 do_compile: Execution of '/workspaces/devcontainer-do/build/tmp/work/aarch64-poky-linux/python-example/1.0+git999-r0/temp/run.do_compile.701172' failed with exit code 1
ERROR: Logfile of failure stored in: /workspaces/devcontainer-do/build/tmp/work/aarch64-poky-linux/python-example/1.0+git999-r0/temp/log.do_compile.701172
Log data follows:
| DEBUG: Executing python function externalsrc_compile_prefunc
| NOTE: python-example: compiling from external source tree /workspaces/devcontainer-do/build/workspace/sources/python-example
| DEBUG: Python function externalsrc_compile_prefunc finished
| DEBUG: Executing shell function do_compile
| Traceback (most recent call last):
| File "setup.py", line 2, in <module>
| from pybind11.setup_helpers import Pybind11Extension, build_ext
| ModuleNotFoundError: No module named 'pybind11'
| ERROR: 'python3 setup.py build ' execution failed.
| WARNING: exit code 1 from a shell command.
Can you help me?
貢獻指南
這個儲存庫沒有索引到貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從 setup.py 和 pyproject.toml 開始,然後檢查已提交的 Yocto 配方,以及顯示缺少 pybind11 模組的 do_compile 日誌。檢查此範例的建置需求如何在 Yocto 建置期間變得可用。完成的標準是配方能夠成功建置並產生一個可執行的範例映像。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- build-system
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100