From 959ca74a294846b7edcc68d622b137e7c5c433f0 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Sun, 13 Oct 2019 14:59:43 +0200 Subject: [PATCH] C++: add an option to enable RTTI support Closes https://github.com/espressif/esp-idf/issues/1684 --- Kconfig | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Kconfig b/Kconfig index c93e3eb63..cc66f8dc3 100644 --- a/Kconfig +++ b/Kconfig @@ -245,9 +245,8 @@ mainmenu "Espressif IoT Development Framework Configuration" memory for thrown exceptions when there is not enough memory on the heap. config COMPILER_CXX_RTTI - # Invisible option, until the toolchain with RTTI support is released. - # Use prompt "Enable C++ run-time type info (RTTI)" when updating. - bool + bool "Enable C++ run-time type info (RTTI)" + default n help Enabling this option compiles all C++ files with RTTI support enabled. This increases binary size (typically by tens of kB) but allows using