source: mainline/uspace/lib/c/arch/amd64/_link.ld.in@ f1380b7

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since f1380b7 was f1380b7, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, remaining files.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1STARTUP(LIBC_PATH/arch/UARCH/src/entry.o)
2ENTRY(__entry)
3
4PHDRS {
5#ifdef LOADER
6 interp PT_INTERP;
7 text PT_LOAD FILEHDR PHDRS FLAGS(5);
8#else
9 text PT_LOAD FLAGS(5);
10#endif
11 data PT_LOAD FLAGS(6);
12 debug PT_NOTE;
13}
14
15SECTIONS {
16#ifdef LOADER
17 . = 0x70001000 + SIZEOF_HEADERS;
18#else
19 . = 0x1000 + SIZEOF_HEADERS;
20#endif
21
22 .init : {
23 *(.init);
24 } :text
25
26 .text : {
27 *(.text .text.*);
28 *(.rodata .rodata.*);
29 } :text
30
31#ifdef LOADER
32 .interp : {
33 *(.interp);
34 } :interp :text
35#endif
36
37 . = . + 0x1000;
38
39 .data : {
40 *(.data);
41 *(.data.rel*);
42 } :data
43
44 .tdata : {
45 _tdata_start = .;
46 *(.tdata);
47 _tdata_end = .;
48 _tbss_start = .;
49 *(.tbss);
50 _tbss_end = .;
51 } :data
52
53 _tls_alignment = ALIGNOF(.tdata);
54
55 .bss : {
56 *(COMMON);
57 *(.bss);
58 } :data
59
60#ifdef CONFIG_LINE_DEBUG
61 .comment 0 : { *(.comment); } :debug
62 .debug_abbrev 0 : { *(.debug_abbrev); } :debug
63 .debug_aranges 0 : { *(.debug_aranges); } :debug
64 .debug_info 0 : { *(.debug_info); } :debug
65 .debug_line 0 : { *(.debug_line); } :debug
66 .debug_loc 0 : { *(.debug_loc); } :debug
67 .debug_pubnames 0 : { *(.debug_pubnames); } :debug
68 .debug_pubtypes 0 : { *(.debug_pubtypes); } :debug
69 .debug_ranges 0 : { *(.debug_ranges); } :debug
70 .debug_str 0 : { *(.debug_str); } :debug
71#endif
72
73 /DISCARD/ : {
74 *(*);
75 }
76}
Note: See TracBrowser for help on using the repository browser.