Kconfig 571 B

1234567891011121314151617181920212223
  1. menuconfig RT_USING_CPLUSPLUS
  2. bool "Enable C++ features"
  3. default n
  4. if RT_USING_CPLUSPLUS
  5. config RT_USING_CPLUSPLUS11
  6. bool "Enable C++11 standard multi-threading feature support"
  7. default n
  8. select RT_USING_POSIX_FS
  9. select RT_USING_POSIX_STDIO
  10. select RT_USING_PTHREADS
  11. select RT_USING_RTC
  12. config RT_USING_CPP_WRAPPER
  13. bool "Enable RT-Thread APIs C++ wrapper"
  14. default n
  15. config RT_USING_CPP_EXCEPTIONS
  16. bool "Enable C++ exceptions (will increase overhead)"
  17. default n
  18. endif