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
RevLine 
[1b1164e8]1STARTUP(LIBC_PATH/arch/UARCH/src/entry.o)
[d630139]2ENTRY(__entry)
3
4PHDRS {
5 text PT_LOAD FLAGS(5);
6 data PT_LOAD FLAGS(6);
7}
8
9SECTIONS {
[1cc2974]10 . = 0x1000 + SIZEOF_HEADERS;
[d630139]11
[1cc2974]12 .init : {
[d630139]13 *(.init);
14 } : text
15 .text : {
16 *(.text);
[6b781c0]17 *(.rodata*);
[d630139]18 } :text
[1cc2974]19
20 . = . + 0x1000;
21
22 .data : {
[d630139]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
[e622f0a8]35 _tls_alignment = ALIGNOF(.tdata);
[d630139]36 .bss : {
37 *(.sbss);
38 *(.scommon);
[6b781c0]39 *(COMMON);
40 *(.bss);
[d630139]41 } :data
[6b781c0]42
43 . = ALIGN(0x1000);
[d630139]44 _heap = .;
[6b781c0]45
[d630139]46 /DISCARD/ : {
47 *(*);
[6b781c0]48 }
49
[d630139]50}
Note: See TracBrowser for help on using the repository browser.