cf99fb40c9
Squashed commit of the following: libs/libxx: Fix some confusing in naming. If the directory is called libxx, then the library must be libxx.a (unless perhaps LIBCXX is selected). libs/: Fix paths in moved library directories. libs: Brute force move of libc, libnx, and libxx to libs. Cannot yet build it in that configuration.
19 lines
386 B
Plaintext
19 lines
386 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
menu "Network-Related Options"
|
|
|
|
config LIBC_IPv4_ADDRCONV
|
|
bool "IPv4 address conversions"
|
|
default n
|
|
depends on !NET_IPv4
|
|
|
|
config LIBC_IPv6_ADDRCONV
|
|
bool "IPv6 address conversions"
|
|
default n
|
|
depends on !NET_IPv6
|
|
|
|
endmenu # Network-Related Options
|