32 lines
758 B
Plaintext
32 lines
758 B
Plaintext
#
|
|
# 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_DLFCN
|
|
bool "Shared library support"
|
|
default n
|
|
select LIBC_MODLIB if !BUILD_FLAT
|
|
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
|
|
|
|
if LIBC_DLFCN
|
|
|
|
config LDPATH_INITIAL
|
|
string "Initial LD_LIBRARY_PATH Value"
|
|
default ""
|
|
depends on LIB_ENVPATH
|
|
---help---
|
|
The initial value of the LD_LIBRARY_PATH variable. This is the
|
|
colon-separated list of absolute paths. E.g., "/lib:/usr/lib:/system/lib"
|
|
|
|
endif
|
|
|
|
# endmenu # Shared Library Support
|