blob: 4b283aecc7e2c2af1de03e8b66a2ca888c60e442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# picolibc companion library options
## no-package
## depends on BARE_METAL && CONFIGURE_has_meson && CONFIGURE_has_ninja
## depends on !LIBC_PICOLIBC
## select LIBC_PICOLIBC_SHOW
## help This option adds Picolibc to an existing configuration which may have
## help a C library, allowing you to install both and select between them
## help when compiling applications using the toolchain
## help
## help Picolibc is a C library intended for use on embedded systems. It is a
## help conglomeration of several library parts, all under BSD-compatible software
## help licenses that make them easily usable on embedded products.
## help
## help Configuration for picolibc can be found under:
## help -> C-library
## help -> picolibc
config LIBC_PICOLIBC_GCC_LIBSTDCXX
bool
prompt "Compile companion libstdc++ picolibc variant"
default y
depends on CC_LANG_CXX
help
This option compiles an additional target libstdc++ for use with
the picolibc companion library. This version is linked when
"--specs=picolibcpp.specs" is specified.
comment "Configuration for picolibc can be found under"
comment "* -> C-library"
comment "* -> picolibc"
|