@@ -138,7 +138,7 @@ SECTIONS
138
138
139
139
*(.text .app_entry *) /* The main startup code */
140
140
141
- *(.text .gdbstub *, .text .gdb_init ) /* Any GDB hooks */
141
+ *(.text .gdbstub * .text .gdb_init ) /* Any GDB hooks */
142
142
143
143
/* all functional callers are placed in IRAM (including SPI/IRQ callbacks/etc) here */
144
144
*(.text ._ZNKSt8functionIF *EE*) /* std::function<any(...)>::operator()() const */
@@ -155,9 +155,9 @@ SECTIONS
155
155
LONG (0x00000000 );
156
156
157
157
*(.ver_number )
158
- *.c .o (.literal *, .text *)
159
- *.cpp .o (EXCLUDE_FILE (umm_malloc.cpp .o ) .literal *, EXCLUDE_FILE (umm_malloc.cpp .o ) .text *)
160
- *.cc .o (.literal *, .text *)
158
+ *.c .o (.literal * .text *)
159
+ *.cpp .o (EXCLUDE_FILE (umm_malloc.cpp .o ) .literal * EXCLUDE_FILE (umm_malloc.cpp .o ) .text *)
160
+ *.cc .o (.literal * .text *)
161
161
#ifdef VTABLES_IN_FLASH
162
162
*(.rodata ._ZTV *) /* C++ vtables */
163
163
#endif
@@ -220,7 +220,7 @@ SECTIONS
220
220
*(.rodata ._ZZ *__func__)
221
221
222
222
/* std::* exception strings, in their own section to allow string coalescing */
223
- *(.irom .exceptiontext , .rodata .exceptiontext )
223
+ *(.irom .exceptiontext .rodata .exceptiontext )
224
224
*(.rodata .*__exception_what__*) /* G++ seems to throw out templatized section attributes */
225
225
226
226
/* c++ typeof IDs, etc. */
0 commit comments