From 0782ea454af5b88cd686ac572c397d92e5912de4 Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Wed, 28 Sep 2022 06:45:15 +0200 Subject: [PATCH] jansson: use cmake instead of autotools This fixes build with clang and lld linker | x86_64-poky-linux-ld.lld: error: unknown argument '--default-symver' | clang-15: error: linker command failed with exit code 1 (use -v to see invocation) Signed-off-by: Markus Volk Signed-off-by: Khem Raj --- meta-oe/recipes-extended/jansson/jansson_2.14.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-extended/jansson/jansson_2.14.bb b/meta-oe/recipes-extended/jansson/jansson_2.14.bb index 945b31f580..94bb99ab71 100644 --- a/meta-oe/recipes-extended/jansson/jansson_2.14.bb +++ b/meta-oe/recipes-extended/jansson/jansson_2.14.bb @@ -10,6 +10,6 @@ SRC_URI[sha256sum] = "fba956f27c6ae56ce6dfd52fbf9d20254aad42821f74fa52f839576252 UPSTREAM_CHECK_URI = "https://github.com/akheron/${BPN}/releases" UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\.tar" -inherit autotools pkgconfig +inherit cmake pkgconfig BBCLASSEXTEND = "native"