From 392b8447223d05db28d306319980fc37594ede46 Mon Sep 17 00:00:00 2001 From: Dan McGregor Date: Wed, 17 Apr 2024 17:33:27 -0600 Subject: libcbor: use shared libraries libfido2 requires cbor be position independent. When PIE's the default this isn't a problem, but not all build configurations do that. Instead of relying on that, just make shared libraries. Signed-off-by: Dan McGregor Signed-off-by: Khem Raj --- meta-oe/recipes-extended/libcbor/libcbor_0.11.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-extended/libcbor/libcbor_0.11.0.bb b/meta-oe/recipes-extended/libcbor/libcbor_0.11.0.bb index 28bd5b5ae2..0e15393dd5 100755 --- a/meta-oe/recipes-extended/libcbor/libcbor_0.11.0.bb +++ b/meta-oe/recipes-extended/libcbor/libcbor_0.11.0.bb @@ -11,4 +11,4 @@ S = "${WORKDIR}/git" inherit cmake -EXTRA_OECMAKE += " -DCMAKE_BUILD_TYPE=Release" +EXTRA_OECMAKE += "-DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS:BOOL=ON" -- cgit v1.2.3-54-g00ecf