Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tools/sdk/ld/eagle.app.v6.common.ld.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ SECTIONS

*(.text.app_entry*) /* The main startup code */

*(.text.gdbstub*, .text.gdb_init) /* Any GDB hooks */
*(.text.gdbstub* .text.gdb_init) /* Any GDB hooks */

/* all functional callers are placed in IRAM (including SPI/IRQ callbacks/etc) here */
*(.text._ZNKSt8functionIF*EE*) /* std::function<any(...)>::operator()() const */
Expand All @@ -155,9 +155,9 @@ SECTIONS
LONG(0x00000000);

*(.ver_number)
*.c.o(.literal*, .text*)
*.cpp.o(EXCLUDE_FILE (umm_malloc.cpp.o) .literal*, EXCLUDE_FILE (umm_malloc.cpp.o) .text*)
*.cc.o(.literal*, .text*)
*.c.o(.literal* .text*)
*.cpp.o(EXCLUDE_FILE (umm_malloc.cpp.o) .literal* EXCLUDE_FILE (umm_malloc.cpp.o) .text*)
*.cc.o(.literal* .text*)
#ifdef VTABLES_IN_FLASH
*(.rodata._ZTV*) /* C++ vtables */
#endif
Expand Down Expand Up @@ -220,7 +220,7 @@ SECTIONS
*(.rodata._ZZ*__func__)

/* std::* exception strings, in their own section to allow string coalescing */
*(.irom.exceptiontext, .rodata.exceptiontext)
*(.irom.exceptiontext .rodata.exceptiontext)
*(.rodata.*__exception_what__*) /* G++ seems to throw out templatized section attributes */

/* c++ typeof IDs, etc. */
Expand Down