2017-01-22 23:14:18 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config LIBC_DLLFCN
|
|
|
|
bool "Shared library support"
|
|
|
|
default n
|
|
|
|
select LIBC_ARCH_ELF
|
2017-01-29 22:55:27 +08:00
|
|
|
select LIBC_MODLIB if !BUILD_KERNEL
|
2017-01-23 05:33:19 +08:00
|
|
|
select MODULE if BUILD_FLAT
|
2017-01-29 22:55:27 +08:00
|
|
|
depends on EXPERIMENTAL || !BUILD_KERNEL
|
2017-01-22 23:14:18 +08:00
|
|
|
---help---
|
|
|
|
Enabled support for user-space shared libraries.
|
|
|
|
|
|
|
|
A work in progress, hence, marked EXPERIMENTAL
|