mirror of
https://github.com/apache/nuttx.git
synced 2026-08-08 14:07:17 +00:00
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.
20 lines
507 B
Text
20 lines
507 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
# menu "Shared Library Support"
|
|
|
|
config LIBC_DLLFCN
|
|
bool "Shared library support"
|
|
default n
|
|
select LIBC_ARCH_ELF
|
|
select LIBC_MODLIB if !BUILD_KERNEL
|
|
select MODULE if BUILD_FLAT
|
|
depends on EXPERIMENTAL || !BUILD_KERNEL
|
|
---help---
|
|
Enabled support for user-space shared libraries.
|
|
|
|
A work in progress, hence, marked EXPERIMENTAL
|
|
|
|
# endmenu # Shared Library Support
|