diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2025-10-23 11:59:32 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-10-24 09:06:24 -0700 |
| commit | 4b701ac88d9969281696030ce7aa40b38c956b11 (patch) | |
| tree | 8ae9b701a4d7f0e0e73769ad4818b3d9fbd8ed38 /meta-oe/recipes-extended | |
| parent | 3e794428beb032716d9dd3baec84f557618bc65e (diff) | |
| download | meta-openembedded-4b701ac88d9969281696030ce7aa40b38c956b11.tar.gz | |
libyang: explicitly add xxhash to DEPENDS
When xxhash was included indirectly, there is a QA issue
at do_package_qa
...
|ERROR: QA Issue: /usr/lib64/libyang.so.3.9.13 contained in package
libyang requires libxxhash.so.0()(64bit), but no providers found in
RDEPENDS:libyang? [file-rdeps]
...
Explicitly add xxhash to DEPENDS, then:
...log.do_configure...
-- Found XXHash: build/tmp/work/x86-64-v3-wrs-linux/libyang/3.13.5/recipe-sysroot/usr/include
-- Hash algorithm: xxhash
...log.do_configure...
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
| -rw-r--r-- | meta-oe/recipes-extended/libyang/libyang_3.13.5.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/libyang/libyang_3.13.5.bb b/meta-oe/recipes-extended/libyang/libyang_3.13.5.bb index 9dad6ba279..4260111200 100644 --- a/meta-oe/recipes-extended/libyang/libyang_3.13.5.bb +++ b/meta-oe/recipes-extended/libyang/libyang_3.13.5.bb | |||
| @@ -16,7 +16,10 @@ SRC_URI = "git://github.com/CESNET/libyang.git;branch=master;protocol=https;tag= | |||
| 16 | 16 | ||
| 17 | # Main dependencies | 17 | # Main dependencies |
| 18 | inherit cmake pkgconfig lib_package ptest multilib_header | 18 | inherit cmake pkgconfig lib_package ptest multilib_header |
| 19 | DEPENDS = "libpcre2" | 19 | DEPENDS = " \ |
| 20 | libpcre2 \ | ||
| 21 | xxhash \ | ||
| 22 | " | ||
| 20 | DEPENDS += "${@bb.utils.contains('PTEST_ENABLED', '1', 'cmocka', '', d)}" | 23 | DEPENDS += "${@bb.utils.contains('PTEST_ENABLED', '1', 'cmocka', '', d)}" |
| 21 | 24 | ||
| 22 | EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release" | 25 | EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release" |
