Skip to content

Commit 209ad72

Browse files
ivankravetsincowizglenlee
authored andcommitted
Add support for @platformio Core 3.5.0
1 parent 9aa33a0 commit 209ad72

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

tools/sdk/ld/eagle.app.v6.common.ld

+19-15
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ SECTIONS
118118
*(.xt_except_desc_end)
119119
*(.dynamic)
120120
*(.gnu.version_d)
121-
. = ALIGN(4); /* this table MUST be 4-byte aligned */
121+
. = ALIGN(4); /* this table MUST be 4-byte aligned */
122122
_bss_table_start = ABSOLUTE(.);
123123
LONG(_bss_start)
124124
LONG(_bss_end)
@@ -157,18 +157,17 @@ SECTIONS
157157
*.c.o( EXCLUDE_FILE (umm_malloc.c.o) .literal*, \
158158
EXCLUDE_FILE (umm_malloc.c.o) .text*)
159159
*.cpp.o(.literal*, .text*)
160-
*.pioenvs\\*\\lib*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, \
161-
EXCLUDE_FILE (umm_malloc.o) .text*)
162-
*.pioenvs/*/lib*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, \
163-
EXCLUDE_FILE (umm_malloc.o) .text*)
164-
*.pioenvs\\*\\lib\*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, \
165-
EXCLUDE_FILE (umm_malloc.o) .text*)
166-
*.pioenvs/*/lib/*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, \
167-
EXCLUDE_FILE (umm_malloc.o) .text*)
168-
*.pioenvs\\*\\src\\*.o(EXCLUDE_FILE (umm_malloc.o) .literal*, \
169-
EXCLUDE_FILE (umm_malloc.o) .text*)
170-
*.pioenvs/*/src/*.o(EXCLUDE_FILE (umm_malloc.o) .literal*, \
171-
EXCLUDE_FILE (umm_malloc.o) .text*)
160+
/* PlatformIO */
161+
/* framework */
162+
*.pioenvs\\*\\lib*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, EXCLUDE_FILE (umm_malloc.o) .text*)
163+
*.pioenvs/*/lib*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, EXCLUDE_FILE (umm_malloc.o) .text*)
164+
/* project dependencies */
165+
*.pioenvs\\*\\lib*\lib*.a:(.literal*, .text*)
166+
*.pioenvs/*/lib*/lib*.a:(.literal*, .text*)
167+
/* project source objects */
168+
*.pioenvs\\*\\src\\*.o(.literal*, .text*)
169+
*.pioenvs/*/src/*.o(.literal*, .text*)
170+
/* End PlatformIO */
172171
*libc.a:(.literal .text .literal.* .text.*)
173172
*libm.a:(.literal .text .literal.* .text.*)
174173
*libgcc.a:_umoddi3.o(.literal .text)
@@ -232,12 +231,17 @@ SECTIONS
232231
*(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
233232
*.cpp.o(.iram.text)
234233
*.c.o(.iram.text)
234+
/* PlatformIO */
235+
/* framework */
235236
*.pioenvs\\*\\lib*.a:(.iram.text)
236237
*.pioenvs/*/lib*.a:(.iram.text)
237-
*.pioenvs\\*\\lib\\*.a:(.iram.text)
238-
*.pioenvs/*/lib/*.a:(.iram.text)
238+
/* project dependencies */
239+
*.pioenvs\\*\\lib*\\lib*.a:(.iram.text)
240+
*.pioenvs/*/lib*/lib*.a:(.iram.text)
241+
/* project source objects */
239242
*.pioenvs\\*\\src\\*.o(.iram.text)
240243
*.pioenvs/*/src/*.o(.iram.text)
244+
/* End PlatformIO */
241245
*(.fini.literal)
242246
*(.fini)
243247
*(.gnu.version)

0 commit comments

Comments
 (0)