Kconfig 455 B

12345678910111213141516171819
  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. endif