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.
|
|
|
|
#
|
|
|
|
|
2017-02-11 00:04:56 +08:00
|
|
|
# menu "Shared Library Support"
|
2017-02-10 23:32:55 +08:00
|
|
|
|
2019-02-10 04:09:28 +08:00
|
|
|
config LIBC_DLFCN
|
2017-01-22 23:14:18 +08:00
|
|
|
bool "Shared library support"
|
|
|
|
default n
|
2019-01-27 01:50:09 +08:00
|
|
|
select LIBC_MODLIB if !BUILD_FLAT
|
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
|
2017-02-11 00:04:56 +08:00
|
|
|
|
2019-02-10 04:09:28 +08:00
|
|
|
if LIBC_DLFCN
|
2019-01-27 01:47:14 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2017-02-11 00:04:56 +08:00
|
|
|
# endmenu # Shared Library Support
|