mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
12 lines
264 B
Plaintext
12 lines
264 B
Plaintext
|
/* This is only included if CONFIG_COMPILER_CXX_RTTI is not set, to
|
||
|
* move RTTI sections of libstdc++ to an unused non-loadable memory region.
|
||
|
*/
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.rodata.discard-rtti (NOLOAD):
|
||
|
{
|
||
|
*libstdc++.a:(.rodata._ZTI* .rodata._ZTS*)
|
||
|
} > discard_seg
|
||
|
}
|