From bec115fbcfe778cd1653161a7920b05a5e01ea8d Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Wed, 27 Mar 2024 18:54:53 -0400 Subject: [PATCH] samples: thrift: add dependencies for c11 threads The thrift hello/client sample did not have the required kconfig options for some reason. Adding these seemed to fix the issue. CONFIG_COMMON_LIBC_THRD=y CONFIG_DYNAMIC_THREAD=y CONFIG_THREAD_STACK_INFO=y Signed-off-by: Chris Friedt --- samples/modules/thrift/hello/client/prj.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/samples/modules/thrift/hello/client/prj.conf b/samples/modules/thrift/hello/client/prj.conf index 9ca8b3be5388..a83715ddfc79 100644 --- a/samples/modules/thrift/hello/client/prj.conf +++ b/samples/modules/thrift/hello/client/prj.conf @@ -6,6 +6,9 @@ CONFIG_CPP=y CONFIG_STD_CPP17=y CONFIG_CPP_EXCEPTIONS=y CONFIG_POSIX_API=y +CONFIG_COMMON_LIBC_THRD=y +CONFIG_DYNAMIC_THREAD=y +CONFIG_THREAD_STACK_INFO=y CONFIG_NETWORKING=y CONFIG_NET_SOCKETS=y CONFIG_NET_SOCKETPAIR=y