From bf066f11e7efe412b3bb83acee79c9dcc6097550 Mon Sep 17 00:00:00 2001 From: Michael Jung Date: Sun, 7 Jul 2019 11:31:46 -0600 Subject: [PATCH] apps/netutils/cjson/Kconfig: stdio floating point support required. cJSON requires floating point support in printf (specifically the 'g' conversion specifier). Thus, select LIBC_FLOATINGPOINT when NETUTILS_CJSON is selected. --- netutils/cjson/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/netutils/cjson/Kconfig b/netutils/cjson/Kconfig index 39fd80dc0..8bd8713eb 100644 --- a/netutils/cjson/Kconfig +++ b/netutils/cjson/Kconfig @@ -6,6 +6,7 @@ config NETUTILS_CJSON bool "cJSON library (current version)" default n + select LIBC_FLOATINGPOINT ---help--- Enables the cJSON library.