source: mainline/uspace/lib/c/arch/ia64/_link.ld.in@ b7fd2a0

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b7fd2a0 was eca820c, checked in by jzr <zarevucky.jiri@…>, 8 years ago

Revert change to the way startup file is referenced.

The path is not actually referenced in the output object itself.
It is only visible in the map generated by the linker, which
does not matter for reproducibility. Also, it would be infeasible
to provide reproducible map files with a proper HelenOS-targeted
toolchain. Coastline breakage begone!

  • Property mode set to 100644
File size: 984 bytes
RevLine 
[eca820c]1STARTUP(LIBC_PATH/arch/UARCH/src/entry.o)
[fbd6f81]2ENTRY(__entry)
3
[a3aa1e1]4PHDRS {
[c53d906]5#ifdef LOADER
6 interp PT_INTERP;
[a3aa1e1]7 text PT_LOAD FLAGS(5);
[c53d906]8#else
9 text PT_LOAD FLAGS(5);
10#endif
[a3aa1e1]11 data PT_LOAD FLAGS(6);
12}
13
[fbd6f81]14SECTIONS {
[c53d906]15#ifdef LOADER
[e1c0260]16 . = 0x800000000 + SIZEOF_HEADERS;
[c53d906]17#else
18 . = 0x4000 + SIZEOF_HEADERS;
19#endif
[e1c0260]20
[7f8f9fd]21 /* Workaround proper alignment of the .init section */
22 . = ALIGN(., 16);
23
[1cc2974]24 .init : {
[a3aa1e1]25 *(.init);
[5e8b881]26 } :text
27
[a3aa1e1]28 .text : {
[49852df]29 *(.text .text.*);
30 *(.rodata .rodata.*);
[a3aa1e1]31 } :text
[5e8b881]32
[0783634]33#ifdef LOADER
34 .interp : {
35 *(.interp);
36 } :interp :text
37#endif
38
[1cc2974]39 . = . + 0x4000;
[5e8b881]40
[1cc2974]41 .got : {
[88634420]42 /* Tell the linker where we expect GP to point. */
43 __gp = .;
[49852df]44 *(.got .got.*);
[5e8b881]45 } :data
46
[a3aa1e1]47 .data : {
48 *(.opd);
[7f9cd77]49 *(.data .data.*);
[a3aa1e1]50 *(.sdata);
51 } :data
[5e8b881]52
[c4c5de5]53 .tdata : {
54 _tdata_start = .;
55 *(.tdata);
56 _tdata_end = .;
57 _tbss_start = .;
58 *(.tbss);
59 _tbss_end = .;
60 } :data
[5e8b881]61
[e622f0a8]62 _tls_alignment = ALIGNOF(.tdata);
[5e8b881]63
[a3aa1e1]64 .bss : {
65 *(.sbss);
66 *(.scommon);
[fbd6f81]67 *(COMMON);
[a3aa1e1]68 *(.bss);
69 } :data
[5e8b881]70
[fbd6f81]71 /DISCARD/ : {
[a3aa1e1]72 *(*);
[5e8b881]73 }
[fbd6f81]74}
Note: See TracBrowser for help on using the repository browser.