1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

Allow *.cc files to be linked into flash by default (#6100)

Fixes #6096
This commit is contained in:
Earle F. Philhower, III
2019-05-15 11:30:57 -07:00
committed by GitHub
parent 75f01dc35a
commit 2dff28abc7

View File

@ -137,6 +137,7 @@ SECTIONS
*(.ver_number)
*.c.o( EXCLUDE_FILE (umm_malloc.c.o) .literal*, EXCLUDE_FILE (umm_malloc.c.o) .text* )
*.cpp.o(.literal*, .text*)
*.cc.o(.literal*, .text*)
#ifdef VTABLES_IN_FLASH
*(.rodata._ZTV*) /* C++ vtables */
#endif