2017-01-22 09:14:18 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2017-02-10 10:04:56 -06:00
|
|
|
# menu "Shared Library Support"
|
2017-02-10 09:32:55 -06:00
|
|
|
|
2019-02-09 14:09:28 -06:00
|
|
|
config LIBC_DLFCN
|
2017-01-22 09:14:18 -06:00
|
|
|
bool "Shared library support"
|
|
|
|
default n
|
2019-01-26 11:50:09 -06:00
|
|
|
select LIBC_MODLIB if !BUILD_FLAT
|
2017-01-22 15:33:19 -06:00
|
|
|
select MODULE if BUILD_FLAT
|
2017-01-22 09:14:18 -06:00
|
|
|
---help---
|
|
|
|
Enabled support for user-space shared libraries.
|
|
|
|
|
2019-02-09 14:09:28 -06:00
|
|
|
if LIBC_DLFCN
|
2019-01-26 11:47:14 -06:00
|
|
|
|
|
|
|
config LDPATH_INITIAL
|
|
|
|
string "Initial LD_LIBRARY_PATH Value"
|
|
|
|
default ""
|
2021-08-01 15:27:08 +08:00
|
|
|
depends on LIBC_ENVPATH
|
2019-01-26 11:47:14 -06:00
|
|
|
---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-10 10:04:56 -06:00
|
|
|
# endmenu # Shared Library Support
|