incubator-nuttx/libs/libc/dlfcn/Kconfig

29 lines
667 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
---help---
Enabled support for user-space shared libraries.
if LIBC_DLFCN
config LDPATH_INITIAL
string "Initial LD_LIBRARY_PATH Value"
default ""
depends on LIBC_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