2022-03-25 23:07:18 +08:00
|
|
|
menuconfig RT_USING_CPLUSPLUS
|
|
|
|
bool "Enable C++ features"
|
2017-06-06 18:19:06 +08:00
|
|
|
default n
|
|
|
|
|
2021-09-03 11:38:48 +08:00
|
|
|
if RT_USING_CPLUSPLUS
|
|
|
|
|
|
|
|
config RT_USING_CPLUSPLUS11
|
2023-06-12 14:32:48 +08:00
|
|
|
bool "Enable C++11 standard multi-threading feature support"
|
2021-09-03 11:38:48 +08:00
|
|
|
default n
|
2021-12-26 22:41:24 +08:00
|
|
|
select RT_USING_POSIX_FS
|
2022-01-03 06:51:44 +08:00
|
|
|
select RT_USING_POSIX_STDIO
|
2021-09-03 11:38:48 +08:00
|
|
|
select RT_USING_PTHREADS
|
|
|
|
select RT_USING_RTC
|
|
|
|
|
2023-06-12 14:32:48 +08:00
|
|
|
config RT_USING_CPP_WRAPPER
|
|
|
|
bool "Enable RT-Thread APIs C++ wrapper"
|
|
|
|
default n
|
|
|
|
|
2023-06-14 12:03:38 +08:00
|
|
|
config RT_USING_CPP_EXCEPTIONS
|
|
|
|
bool "Enable C++ exceptions (will increase overhead)"
|
|
|
|
default n
|
|
|
|
|
2021-09-03 11:38:48 +08:00
|
|
|
endif
|