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:
parent
c1f865b412
commit
0e59f6846f
4 changed files with 5 additions and 5 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue