diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-29 08:51:32 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-29 08:51:32 -0400 |
commit | abfdd6eb3ed61d13a47735812eca0028caf6b6da (patch) | |
tree | 79c744895401a7779e80289c927fcbba72e8f91b /link.ld | |
parent | 2d0245a85deb62cbed66c053f80f339e0d97ed70 (diff) |
some fixes
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*) + } } |