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.

This commit is contained in:
Michael Jung 2019-07-07 11:31:46 -06:00 committed by Gregory Nutt
parent 9eff955556
commit bf066f11e7

View File

@ -6,6 +6,7 @@
config NETUTILS_CJSON
bool "cJSON library (current version)"
default n
select LIBC_FLOATINGPOINT
---help---
Enables the cJSON library.