source: mainline/uspace/lib/c/arch/arm32/_link.ld.in@ 999efa9

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 999efa9 was eca820c, checked in by jzr <zarevucky.jiri@…>, 8 years ago

Revert change to the way startup file is referenced.

The path is not actually referenced in the output object itself.
It is only visible in the map generated by the linker, which
does not matter for reproducibility. Also, it would be infeasible
to provide reproducible map files with a proper HelenOS-targeted
toolchain. Coastline breakage begone!

  • Property mode set to 100644
File size: 816 bytes
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}
13
14SECTIONS {
15#ifdef LOADER
16 . = 0x70001000 + SIZEOF_HEADERS;
17#else
18 . = 0x1000 + SIZEOF_HEADERS;
19#endif
20
21 .init : {
22 *(.init);
23 } :text
24
25 .text : {
26 *(.text .text.*);
27 *(.rodata .rodata.*);
28 } :text
29
30#ifdef LOADER
31 .interp : {
32 *(.interp);
33 } :interp :text
34#endif
35
36 . = . + 0x1000;
37
38 .data : {
39 *(.opd);
40 *(.data .data.*);
41 *(.sdata);
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 *(.sbss);
57 *(.scommon);
58 *(COMMON);
59 *(.bss);
60 } :data
61
62 /DISCARD/ : {
63 *(*);
64 }
65}
Note: See TracBrowser for help on using the repository browser.