libc: Changed dependencies of NEWLIB_C into !MINIMAL_LIBC

Changed Kconfig dependencies of NEWLIB_C into !MINIMAL_LIBC

Signed-off-by: Jan Van Winkel <jan.van_winkel@dxplore.eu>
This commit is contained in:
Jan Van Winkel 2019-09-27 21:39:51 +02:00 committed by Kumar Gala
commit 0e59f6846f
4 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@
config GROVE_LIGHT_SENSOR
bool "Enable the Seeed Grove Light Sensor"
depends on ADC && NEWLIB_LIBC
depends on ADC && !MINIMAL_LIBC
help
Setting this value will enable driver support for the Grove Light
Sensor.
@ -37,7 +37,7 @@ endif
config GROVE_TEMPERATURE_SENSOR
bool "Enable the Seeed Grove Temperature Sensor"
depends on ADC && NEWLIB_LIBC
depends on ADC && !MINIMAL_LIBC
help
Setting this value will enable driver support for the Grove
Temperature Sensor.

View file

@ -143,7 +143,7 @@ choice
config LVGL_MEM_POOL_HEAP_LIB_C
bool "C library Heap"
depends on NEWLIB_LIBC || (MINIMAL_LIBC_MALLOC_ARENA_SIZE != 0)
depends on !MINIMAL_LIBC || (MINIMAL_LIBC_MALLOC_ARENA_SIZE != 0)
help
Use C library malloc and free to allocate objects on the C library heap

View file

@ -55,7 +55,7 @@ config LIB_CPLUSPLUS
config EXCEPTIONS
bool "Enable C++ exceptions support"
select LIB_CPLUSPLUS
depends on NEWLIB_LIBC
depends on !MINIMAL_LIBC
help
This option enables support of C++ exceptions.

View file

@ -131,7 +131,7 @@ config LOG_IMMEDIATE
by another one in the higher priority context.
config LOG_ENABLE_FANCY_OUTPUT_FORMATTING
depends on !NEWLIB_LIBC && !ARCH_POSIX
depends on MINIMAL_LIBC
bool "Format strings with minimal libc _prf() instead of _vprintk()"
help
Selecting this option will choose more robust _prf() function from