mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-25 20:02:37 +03:00
Add support for @PlatformIO Core 3.5.0
This commit is contained in:
parent
b0bb1e144f
commit
411f8d878f
@ -118,7 +118,7 @@ SECTIONS
|
|||||||
*(.xt_except_desc_end)
|
*(.xt_except_desc_end)
|
||||||
*(.dynamic)
|
*(.dynamic)
|
||||||
*(.gnu.version_d)
|
*(.gnu.version_d)
|
||||||
. = ALIGN(4); /* this table MUST be 4-byte aligned */
|
. = ALIGN(4); /* this table MUST be 4-byte aligned */
|
||||||
_bss_table_start = ABSOLUTE(.);
|
_bss_table_start = ABSOLUTE(.);
|
||||||
LONG(_bss_start)
|
LONG(_bss_start)
|
||||||
LONG(_bss_end)
|
LONG(_bss_end)
|
||||||
@ -157,18 +157,17 @@ SECTIONS
|
|||||||
*.c.o( EXCLUDE_FILE (umm_malloc.c.o) .literal*, \
|
*.c.o( EXCLUDE_FILE (umm_malloc.c.o) .literal*, \
|
||||||
EXCLUDE_FILE (umm_malloc.c.o) .text*)
|
EXCLUDE_FILE (umm_malloc.c.o) .text*)
|
||||||
*.cpp.o(.literal*, .text*)
|
*.cpp.o(.literal*, .text*)
|
||||||
*.pioenvs\\*\\lib*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, \
|
/* PlatformIO */
|
||||||
EXCLUDE_FILE (umm_malloc.o) .text*)
|
/* framework */
|
||||||
*.pioenvs/*/lib*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, \
|
*.pioenvs\\*\\lib*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, EXCLUDE_FILE (umm_malloc.o) .text*)
|
||||||
EXCLUDE_FILE (umm_malloc.o) .text*)
|
*.pioenvs/*/lib*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, EXCLUDE_FILE (umm_malloc.o) .text*)
|
||||||
*.pioenvs\\*\\lib\*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, \
|
/* project dependencies */
|
||||||
EXCLUDE_FILE (umm_malloc.o) .text*)
|
*.pioenvs\\*\\lib*\lib*.a:(.literal*, .text*)
|
||||||
*.pioenvs/*/lib/*.a:(EXCLUDE_FILE (umm_malloc.o) .literal*, \
|
*.pioenvs/*/lib*/lib*.a:(.literal*, .text*)
|
||||||
EXCLUDE_FILE (umm_malloc.o) .text*)
|
/* project source objects */
|
||||||
*.pioenvs\\*\\src\\*.o(EXCLUDE_FILE (umm_malloc.o) .literal*, \
|
*.pioenvs\\*\\src\\*.o(.literal*, .text*)
|
||||||
EXCLUDE_FILE (umm_malloc.o) .text*)
|
*.pioenvs/*/src/*.o(.literal*, .text*)
|
||||||
*.pioenvs/*/src/*.o(EXCLUDE_FILE (umm_malloc.o) .literal*, \
|
/* End PlatformIO */
|
||||||
EXCLUDE_FILE (umm_malloc.o) .text*)
|
|
||||||
*libc.a:(.literal .text .literal.* .text.*)
|
*libc.a:(.literal .text .literal.* .text.*)
|
||||||
*libm.a:(.literal .text .literal.* .text.*)
|
*libm.a:(.literal .text .literal.* .text.*)
|
||||||
*libgcc.a:_umoddi3.o(.literal .text)
|
*libgcc.a:_umoddi3.o(.literal .text)
|
||||||
@ -232,12 +231,17 @@ SECTIONS
|
|||||||
*(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
*(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
||||||
*.cpp.o(.iram.text)
|
*.cpp.o(.iram.text)
|
||||||
*.c.o(.iram.text)
|
*.c.o(.iram.text)
|
||||||
|
/* PlatformIO */
|
||||||
|
/* framework */
|
||||||
*.pioenvs\\*\\lib*.a:(.iram.text)
|
*.pioenvs\\*\\lib*.a:(.iram.text)
|
||||||
*.pioenvs/*/lib*.a:(.iram.text)
|
*.pioenvs/*/lib*.a:(.iram.text)
|
||||||
*.pioenvs\\*\\lib\\*.a:(.iram.text)
|
/* project dependencies */
|
||||||
*.pioenvs/*/lib/*.a:(.iram.text)
|
*.pioenvs\\*\\lib*\\lib*.a:(.iram.text)
|
||||||
|
*.pioenvs/*/lib*/lib*.a:(.iram.text)
|
||||||
|
/* project source objects */
|
||||||
*.pioenvs\\*\\src\\*.o(.iram.text)
|
*.pioenvs\\*\\src\\*.o(.iram.text)
|
||||||
*.pioenvs/*/src/*.o(.iram.text)
|
*.pioenvs/*/src/*.o(.iram.text)
|
||||||
|
/* End PlatformIO */
|
||||||
*(.fini.literal)
|
*(.fini.literal)
|
||||||
*(.fini)
|
*(.fini)
|
||||||
*(.gnu.version)
|
*(.gnu.version)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user