diff options
Diffstat (limited to 'link.ld')
-rw-r--r-- | link.ld | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -34,12 +34,12 @@ SECTIONS *(.rodata) } - .init_array : - { - __init_array_start = .; - *(.init_array) - __init_array_end = .; - } + .init_array : + { + __init_array_start = .; + *(.init_array) + __init_array_end = .; + } /* Read-write data (initialized) */ .data BLOCK(4K) : ALIGN(4K) @@ -58,9 +58,9 @@ SECTIONS a segment with the same name. Simply add stuff here as needed. */ .note : - { - *(.note) - *(.note*) - } + { + *(.note) + *(.note*) + } } |