diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2025-05-12 15:35:46 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-05-12 08:09:23 -0700 |
commit | 244997df0f2e8d0a3394ba665cee308216cf4003 (patch) | |
tree | 5985f54e47db0e505bf30fd27584053baa948fa4 /meta-python | |
parent | 798385b2ca1f6b5a9ed549b6bd91e0532a5ddabb (diff) | |
download | meta-openembedded-244997df0f2e8d0a3394ba665cee308216cf4003.tar.gz |
python3-setproctitle: Add missing rdep on libatomic-dev for ptest
Fixes:
E subprocess.CalledProcessError: Command '['cc', '-I/usr/include/python3.13', '-I/usr/include/python3.13', '-o', '/usr/lib64/python3-setproctitle/ptest/tests/pyrun3.13', '/usr/lib64/python3-setproctitle/ptest/tests/pyrun.c', '-L/usr/lib64', '-lpython3.13', '-ldl', '-lpthread', '-latomic', '-lm', '-L/usr/lib']' returned non-zero exit status 1.
../../python3.13/subprocess.py:421: CalledProcessError
ERROR: tests/setproctitle_test.py:test_embedded
E subprocess.CalledProcessError: Command '['cc', '-I/usr/include/python3.13', '-I/usr/include/python3.13', '-o', '/usr/lib64/python3-setproctitle/ptest/tests/pyrun3.13', '/usr/lib64/python3-setproctitle/ptest/tests/pyrun.c', '-L/usr/lib64', '-lpython3.13', '-ldl', '-lpthread', '-latomic', '-lm', '-L/usr/lib']' returned non-zero exit status 1.
../../python3.13/subprocess.py:421: CalledProcessError
ERROR: tests/setproctitle_test.py:test_embedded_many_args
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb b/meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb index cf03bc3b51..6be65469af 100644 --- a/meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb +++ b/meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb | |||
@@ -16,6 +16,7 @@ SRC_URI += " \ | |||
16 | " | 16 | " |
17 | 17 | ||
18 | RDEPENDS:${PN}-ptest += "\ | 18 | RDEPENDS:${PN}-ptest += "\ |
19 | libatomic-dev \ | ||
19 | packagegroup-core-buildessential \ | 20 | packagegroup-core-buildessential \ |
20 | procps-ps \ | 21 | procps-ps \ |
21 | python3-dev \ | 22 | python3-dev \ |