3d0466ccd1
Ref. https://github.com/espressif/esp-idf/issues/1684 This change allows RTTI to be enabled in menuconfig. For full RTTI support, libstdc++.a in the toolchain should be built without -fno-rtti, as it is done now. Generally if libstdc++.a is built with RTTI, applications which do not use RTTI (and build with -fno-rtti) could still include typeinfo structures referenced from STL classes’ vtables. This change works around this, by moving all typeinfo structures from libstdc++.a into a non-loadable section, placed into a non-existent memory region starting at address 0. This can be done because when the application is compiled with -fno-rtti, typeinfo structures are not used at run time. This way, typeinfo structures do not contribute to the application binary size. If the application is build with RTTI support, typeinfo structures are linked into the application .rodata section as usual. Note that this commit does not actually enable RTTI support. The respective Kconfig option is hidden, and will be made visible when the toolchain is updated. |
||
---|---|---|
.. | ||
scripts | ||
third_party | ||
build.cmake | ||
component.cmake | ||
convert_to_cmake.py | ||
crosstool_version_check.cmake | ||
git_submodules.cmake | ||
idf.cmake | ||
kconfig.cmake | ||
ldgen.cmake | ||
project.cmake | ||
project_description.json.in | ||
run_cmake_lint.sh | ||
targets.cmake | ||
toolchain-esp32.cmake | ||
utilities.cmake | ||
version.cmake |