walnux/libs/libc/dlfcn/Kconfig
chao an 52482219c8 libc/elf: rename modlib to libelf
Renaming "modlib" to "libelf" is more in line with the implementation content,
which makes it easier for individual developers to understand the capabilities of this module.

CONFIG_LIBC_MODLIB -> CONFIG_LIBC_ELF

Signed-off-by: chao an <anchao.archer@bytedance.com>
2025-04-11 09:43:22 +08:00

29 lines
680 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_ELF 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