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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 78a9e5ab was a1fdf53, checked in by Jiri Svoboda <jiri@…>, 14 years ago

Work around problem with .init section alignment on ia64. Real fix should be found.

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