Changeset 2eadda9 in mainline for uspace/lib/c/arch/ia32/_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/ia32/_link.ld.in
rc2c4127 r2eadda9 116 116 117 117 .init_array : { 118 PROVIDE (__init_array_start = .); 118 #ifndef SHLIB 119 PROVIDE_HIDDEN (__init_array_start = .); 120 #endif 119 121 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))) 120 122 KEEP (*(.init_array .ctors)) 121 PROVIDE (__init_array_end = .); 123 #ifndef SHLIB 124 PROVIDE_HIDDEN (__init_array_end = .); 125 #endif 122 126 } 123 127 124 128 .fini_array : { 125 PROVIDE (__fini_array_start = .); 129 #ifndef SHLIB 130 PROVIDE_HIDDEN (__fini_array_start = .); 131 #endif 126 132 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))) 127 133 KEEP (*(.fini_array .dtors)) 128 PROVIDE (__fini_array_end = .); 134 #ifndef SHLIB 135 PROVIDE_HIDDEN (__fini_array_end = .); 136 #endif 129 137 } 130 138
Note:
See TracChangeset
for help on using the changeset viewer.