source: mainline/uspace/lib/c/arch/arm32/_link.ld.in@ 5587cf7

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 5587cf7 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: 630 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 .init : {
13 *(.init);
14 } : text
15 .text : {
16 *(.text);
17 *(.rodata*);
18 } :text
19
20 . = . + 0x1000;
21
22 .data : {
23 *(.opd);
24 *(.data .data.*);
25 *(.sdata);
26 } :data
27 .tdata : {
28 _tdata_start = .;
29 *(.tdata);
30 _tdata_end = .;
31 _tbss_start = .;
32 *(.tbss);
33 _tbss_end = .;
34 } :data
35 _tls_alignment = ALIGNOF(.tdata);
36 .bss : {
37 *(.sbss);
38 *(.scommon);
39 *(COMMON);
40 *(.bss);
41 } :data
42
43 . = ALIGN(0x1000);
44 _heap = .;
45
46 /DISCARD/ : {
47 *(*);
48 }
49
50}
Note: See TracBrowser for help on using the repository browser.