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