Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
Fix __ebss not being placed after all .bss symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
mattico authored Aug 19, 2020
1 parent 2c56bfd commit 04173cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions link.x.in
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ SECTIONS
. = ALIGN(4);
__sbss = .;
*(.bss .bss.*);
. = ALIGN(4); /* 4-byte align the end (VMA) of this section */
__ebss = .;
} > RAM
. = ALIGN(4); /* 4-byte align the end (VMA) of this section */
__ebss = .;

/* ### .uninit */
.uninit (NOLOAD) : ALIGN(4)
Expand Down

0 comments on commit 04173cb

Please sign in to comment.