Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in section list #8726

Merged
merged 1 commit into from
Nov 23, 2022
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