nuttx/libs/libc/dlfcn/Kconfig
anjiahao e9e01506d3 dlcn:need select MODULES when compile
Signed-off-by: anjiahao <anjiahao@xiaomi.com>
2024-10-08 19:56:33 +08:00

29 lines
683 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_DLFCN
bool "Shared library support"
default n
select MODULES
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