source: mainline/uspace/lib/c/arch/arm32/_link.ld.in@ 7aa6b99

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7aa6b99 was 0783634, checked in by Martin Decky <martin@…>, 13 years ago

place the .interp section behind the other sections in the text segment
the explicit alignment directive (which causes issues such as #491) is no longer needed

  • Property mode set to 100644
File size: 816 bytes
RevLine 
[1b1164e8]1STARTUP(LIBC_PATH/arch/UARCH/src/entry.o)
[d630139]2ENTRY(__entry)
3
4PHDRS {
[c53d906]5#ifdef LOADER
6 interp PT_INTERP;
7 text PT_LOAD FILEHDR PHDRS FLAGS(5);
8#else
[d630139]9 text PT_LOAD FLAGS(5);
[c53d906]10#endif
[d630139]11 data PT_LOAD FLAGS(6);
12}
13
14SECTIONS {
[c53d906]15#ifdef LOADER
[e1c0260]16 . = 0x70001000 + SIZEOF_HEADERS;
[c53d906]17#else
18 . = 0x1000 + SIZEOF_HEADERS;
19#endif
[e1c0260]20
[1cc2974]21 .init : {
[d630139]22 *(.init);
[5e8b881]23 } :text
24
[d630139]25 .text : {
[21cb3ac]26 *(.text .text.*);
27 *(.rodata .rodata.*);
[d630139]28 } :text
[5e8b881]29
[0783634]30#ifdef LOADER
31 .interp : {
32 *(.interp);
33 } :interp :text
34#endif
35
[1cc2974]36 . = . + 0x1000;
[5e8b881]37
[1cc2974]38 .data : {
[d630139]39 *(.opd);
40 *(.data .data.*);
41 *(.sdata);
42 } :data
[5e8b881]43
[d630139]44 .tdata : {
45 _tdata_start = .;
46 *(.tdata);
47 _tdata_end = .;
48 _tbss_start = .;
49 *(.tbss);
50 _tbss_end = .;
51 } :data
[5e8b881]52
[e622f0a8]53 _tls_alignment = ALIGNOF(.tdata);
[5e8b881]54
[d630139]55 .bss : {
56 *(.sbss);
57 *(.scommon);
[5e8b881]58 *(COMMON);
59 *(.bss);
[d630139]60 } :data
[6b781c0]61
[d630139]62 /DISCARD/ : {
63 *(*);
[6b781c0]64 }
[d630139]65}
Note: See TracBrowser for help on using the repository browser.