Kconfig 355 字节
Newer Older
B
bernard 已提交
1 2 3 4 5 6
menu "C++ features"

config RT_USING_CPLUSPLUS
    bool "Support C++ features"
    default n

L
liukangcc 已提交
7 8 9
if RT_USING_CPLUSPLUS

    config RT_USING_CPLUSPLUS11
10
        bool "Enable c++11 threading feature support"
L
liukangcc 已提交
11 12 13 14 15 16 17 18
        default n
        select RT_USING_LIBC
        select RT_USING_DFS
        select RT_USING_PTHREADS
        select RT_USING_RTC

endif

B
bernard 已提交
19
endmenu