We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2251bf0 commit 787e04cCopy full SHA for 787e04c
ilg.gnuarmeclipse.templates.stm/templates/ldscripts/sections.ld
@@ -229,8 +229,19 @@ SECTIONS
229
_ebss = . ; /* STM specific definition */
230
} >RAM
231
232
- PROVIDE ( end = _ebss );
233
- PROVIDE ( _end = _ebss );
+ .noinit (NOLOAD):
+ {
234
+ . = ALIGN(4);
235
+ _noinit = .;
236
+
237
+ *(.noinit .noinit.*)
238
239
+ . = ALIGN(4) ;
240
+ _end_noinit = .;
241
+ } > RAM
242
243
+ PROVIDE ( end = _end_noinit ); /* was _ebss */
244
+ PROVIDE ( _end = end );
245
246
/*
247
* The user stack section.
0 commit comments