Changeset 2eadda9 in mainline for uspace/lib/c/arch/arm32/_link.ld.in
- Timestamp:
- 2018-07-11T17:45:30Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 99d3123
- Parents:
- c2c4127
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-11 17:08:12)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-11 17:45:30)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/arm32/_link.ld.in
rc2c4127 r2eadda9 55 55 56 56 .init_array : { 57 #ifndef SHLIB 57 58 PROVIDE_HIDDEN (__init_array_start = .); 59 #endif 58 60 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))) 59 61 KEEP (*(.init_array .ctors)) 62 #ifndef SHLIB 60 63 PROVIDE_HIDDEN (__init_array_end = .); 64 #endif 61 65 } 62 66 63 67 .fini_array : { 68 #ifndef SHLIB 64 69 PROVIDE_HIDDEN (__fini_array_start = .); 70 #endif 65 71 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))) 66 72 KEEP (*(.fini_array .dtors)) 73 #ifndef SHLIB 67 74 PROVIDE_HIDDEN (__fini_array_end = .); 75 #endif 68 76 } 69 77
Note:
See TracChangeset
for help on using the changeset viewer.