1# Copyright (c) 2022 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4menu "Deprecated" 5 6config CPLUSPLUS 7 bool "[DEPRECATED] C++ support for the application" 8 select CPP 9 select DEPRECATED 10 help 11 This option enables the use of applications built with C++. 12 13 [DEPRECATED] Select CPP instead. 14 15config LIB_CPLUSPLUS 16 bool "[DEPRECATED] Link with STD C++ library" 17 select REQUIRES_FULL_LIBC 18 select REQUIRES_FULL_LIBCPP 19 select DEPRECATED 20 help 21 Link with STD C++ Library. 22 23 [DEPRECATED] 24 Select REQUIRES_FULL_LIBCPP or specify the C++ standard library 25 implementation to use from LIBCPP_IMPLEMENTATION. 26 27if LIB_CPLUSPLUS 28 29config EXCEPTIONS 30 bool "[DEPRECATED] C++ exceptions support" 31 depends on !NEWLIB_LIBC_NANO 32 select CPP_EXCEPTIONS 33 select DEPRECATED 34 help 35 This option enables support of C++ exceptions. 36 37 [DEPRECATED] Select CPP_EXCEPTIONS instead. 38 39config RTTI 40 bool "[DEPRECATED] C++ RTTI support" 41 select CPP_RTTI 42 select DEPRECATED 43 help 44 This option enables support of C++ RTTI. 45 46 [DEPRECATED] Select CPP_RTTI instead. 47 48endif # LIB_CPLUSPLUS 49 50endmenu 51