source: mainline/uspace/lib/c/arch/sparc64/_link.ld.in@ 3e6a98c5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3e6a98c5 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: 828 bytes
RevLine 
[1b1164e8]1STARTUP(LIBC_PATH/arch/UARCH/src/entry.o)
[bb5b950]2ENTRY(__entry)
3
4PHDRS {
[c53d906]5#ifdef LOADER
6 interp PT_INTERP;
7 text PT_LOAD FILEHDR PHDRS FLAGS(5);
8#else
[bb5b950]9 text PT_LOAD FLAGS(5);
[c53d906]10#endif
[bb5b950]11 data PT_LOAD FLAGS(6);
12}
13
14SECTIONS {
[c53d906]15#ifdef LOADER
[e1c0260]16 . = 0x70004000 + SIZEOF_HEADERS;
[c53d906]17#else
18 . = 0x4000 + SIZEOF_HEADERS;
19#endif
[e1c0260]20
[1cc2974]21 .init : {
[bb5b950]22 *(.init);
23 } :text
[5e8b881]24
[bb5b950]25 .text : {
[eaf4c393]26 *(.text .text.*);
27 *(.rodata .rodata.*);
[bb5b950]28 } :text
[5e8b881]29
[0783634]30#ifdef LOADER
31 .interp : {
32 *(.interp);
33 } :interp :text
34#endif
35
[1cc2974]36 . = . + 0x4000;
[5e8b881]37
[1cc2974]38 .got : {
[cfa70add]39 _gp = .;
40 *(.got*);
41 } :data
[5e8b881]42
[1cc2974]43 .data : {
[bb5b950]44 *(.data);
45 *(.sdata);
46 } :data
[5e8b881]47
[bb5b950]48 .tdata : {
49 _tdata_start = .;
50 *(.tdata);
51 _tdata_end = .;
52 _tbss_start = .;
53 *(.tbss);
54 _tbss_end = .;
55 } :data
[5e8b881]56
[e622f0a8]57 _tls_alignment = ALIGNOF(.tdata);
[5e8b881]58
[bb5b950]59 .bss : {
60 *(.sbss);
61 *(COMMON);
62 *(.bss);
63 } :data
64
65 /DISCARD/ : {
66 *(*);
67 }
68}
Note: See TracBrowser for help on using the repository browser.