source: mainline/uspace/lib/c/arch/abs32le/_link.ld.in@ 40fb017

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

rename library directories (the common "lib" prefix is already in the upper directory)

  • Property mode set to 100644
File size: 615 bytes
Line 
1STARTUP(LIBC_PATH/arch/UARCH/src/entry.o)
2ENTRY(__entry)
3
4PHDRS {
5 text PT_LOAD FLAGS(5);
6 data PT_LOAD FLAGS(6);
7}
8
9SECTIONS {
10 . = 0x1000 + SIZEOF_HEADERS;
11
12 .text : {
13 *(.text);
14 *(.rodata*);
15 } :text
16
17 . = . + 0x1000;
18
19 .data : {
20 *(.data);
21 *(.data.rel*);
22 } :data
23
24 .tdata : {
25 _tdata_start = .;
26 *(.tdata);
27 *(.gnu.linkonce.tb.*);
28 _tdata_end = .;
29 _tbss_start = .;
30 *(.tbss);
31 _tbss_end = .;
32 } :data
33
34 _tls_alignment = ALIGNOF(.tdata);
35
36 .sbss : {
37 *(.scommon);
38 *(.sbss);
39 }
40
41 .bss : {
42 *(COMMON);
43 *(.bss);
44 } :data
45
46 . = ALIGN(0x1000);
47
48 _heap = .;
49
50 /DISCARD/ : {
51 *(*);
52 }
53}
Note: See TracBrowser for help on using the repository browser.