Kconfig 444 B

1234567891011121314151617181920
  1. menu "POSIX layer and C standard library"
  2. config RT_USING_MODULE
  3. bool "Enable dynamic module with dlopen/dlsym/dlclose feature"
  4. default n
  5. if RT_USING_MODULE
  6. config RT_USING_CUSTOM_DLMODULE
  7. bool "Enable load dynamic module by custom"
  8. default n
  9. endif
  10. config RT_LIBC_DEFAULT_TIMEZONE
  11. int "Set the default time zone (UTC+)"
  12. range -12 12
  13. default 8
  14. source "$RTT_DIR/components/libc/posix/Kconfig"
  15. endmenu