diff options
Diffstat (limited to 'examples/mips.lds')
-rw-r--r-- | examples/mips.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/mips.lds b/examples/mips.lds index aceb6e9002..939e0e61c0 100644 --- a/examples/mips.lds +++ b/examples/mips.lds @@ -53,7 +53,7 @@ SECTIONS . = ALIGN(4); __bss_start = .; .sbss (NOLOAD) : { *(.sbss) } - .bss (NOLOAD) : { *(.bss) } + .bss (NOLOAD) : { *(.bss) . = ALIGN(4); } _end = .; } |