8000 Move uninitialized_data to before heap · Santroller/arduino-pico@1834421 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1834421

Browse files
committed
Move uninitialized_data to before heap
1 parent 680bced commit 1834421

File tree

10 files changed

+5
-5
lines changed

10 files changed

+5
-5
lines changed

lib/rp2350-riscv/libipv4-big.a

0 Bytes
Binary file not shown.

lib/rp2350-riscv/libipv4-bt-big.a

0 Bytes
Binary file not shown.

lib/rp2350-riscv/libipv4-bt.a

0 Bytes
Binary file not shown.

lib/rp2350-riscv/libipv4-ipv6-big.a

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

lib/rp2350-riscv/libipv4-ipv6-bt.a

0 Bytes
Binary file not shown.

lib/rp2350-riscv/libipv4-ipv6.a

0 Bytes
Binary file not shown.

lib/rp2350-riscv/libipv4.a

0 Bytes
Binary file not shown.

lib/rp2350-riscv/libpico.a

0 Bytes
Binary file not shown.

lib/rp2350/memmap_default.ld

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,6 @@ SECTIONS
178178
*(.ram_vector_table)
179179
} > RAM
180180

181-
.uninitialized_data (NOLOAD): {
182-
. = ALIGN(4);
183-
*(.uninitialized_data*)
184-
} > RAM
185-
186181
.data : {
187182
__data_start__ = .;
188183
*(vtable)
@@ -244,6 +239,11 @@ SECTIONS
244239
__bss_end__ = .;
245240
} > RAM
246241

242+
.uninitialized_data (NOLOAD): {
243+
. = ALIGN(4);
244+
*(.uninitialized_data*)
245+
} > RAM
246+
247247
.heap (NOLOAD):
248248
{
249249
__end__ = .;

0 commit comments

Comments
 (0)
0