2017-01-22 16:14:18 +01: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 17:04:56 +01:00
|
|
|
# menu "Shared Library Support"
|
2017-02-10 16:32:55 +01:00
|
|
|
|
2019-02-09 21:09:28 +01:00
|
|
|
config LIBC_DLFCN
|
2017-01-22 16:14:18 +01:00
|
|
|
bool "Shared library support"
|
|
|
|
default n
|
2019-01-26 18:50:09 +01:00
|
|
|
select LIBC_MODLIB if !BUILD_FLAT
|
2017-01-22 22:33:19 +01:00
|
|
|
select MODULE if BUILD_FLAT
|
2017-01-22 16:14:18 +01:00
|
|
|
---help---
|
|
|
|
Enabled support for user-space shared libraries.
|
|
|
|
|
2019-02-09 21:09:28 +01:00
|
|
|
if LIBC_DLFCN
|
2019-01-26 18:47:14 +01:00
|
|
|
|
|
|
|
config LDPATH_INITIAL
|
|
|
|
string "Initial LD_LIBRARY_PATH Value"
|
|
|
|
default ""
|
2021-08-01 09:27:08 +02:00
|
|
|
depends on LIBC_ENVPATH
|
2019-01-26 18:47:14 +01: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 17:04:56 +01:00
|
|
|
# endmenu # Shared Library Support
|