source: mainline/uspace/srv/loader/arch/ia32/_link.ld.in@ fcd7053

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

cleanup configuration
code cleanup

  • Property mode set to 100644
File size: 880 bytes
RevLine 
[fcd7053]1/*
[c98e6ee]2 * The difference from _link.ld.in for regular statically-linked apps
3 * is the base address and the special interp section.
4 */
[fcd7053]5STARTUP(LIBC_PREFIX/arch/UARCH/src/entry.o)
[c98e6ee]6ENTRY(__entry)
7
8PHDRS {
9 interp PT_INTERP;
10 text PT_LOAD FILEHDR PHDRS FLAGS(5);
11 data PT_LOAD FLAGS(6);
12}
13
14SECTIONS {
15 .interp : {
16 *(.interp);
17 } :interp
18
19 . = 0x70001000;
20
21 .init ALIGN(0x1000) : SUBALIGN(0x1000) {
22 *(.init);
23 } :text
24 .text : {
25 *(.text);
26 *(.rodata*);
27 } :text
28
29 .data ALIGN(0x1000) : SUBALIGN(0x1000) {
30 *(.data);
31 } :data
32 .tdata : {
33 _tdata_start = .;
34 *(.tdata);
35 _tdata_end = .;
36 } :data
37 .tbss : {
38 _tbss_start = .;
39 *(.tbss);
40 _tbss_end = .;
41 } :data
42 _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
43 .bss : {
44 *(COMMON);
45 *(.bss);
46 } :data
47
48 . = ALIGN(0x1000);
49 _heap = .;
50
51 /DISCARD/ : {
52 *(*);
53 }
54
55}
Note: See TracBrowser for help on using the repository browser.