--initializer_prefix
In this section:
Syntax
--initializer_prefix=prefixParameters
| A string that will be used as a name prefix to linker sections with initializer data. |
Description
The initialize directive splits sections into sections that hold initializer data and sections that hold the space for the initialized data. The sections that hold initializer data get the name suffix _init. Use this option to add a prefix to those section names. This can be useful if you create linker scripts that match section names by prefix.
Example
Specifying this option:
--initializer_prefix=init.
will mean that a section data initialized with the initialize directive will be split into the sections data and init.data_init.
See also
Caution
To set this option, use Project>Options>Linker>Extra Options.