source: mainline/uspace/libc/arch/sparc64/_link.ld.in@ df4ed85

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since df4ed85 was cfa70add, checked in by Jakub Jermar <jakub@…>, 19 years ago

sparc64 update.

  • Prototype userspace layer implementation that at least relates to sparc64 and compiles cleanly.
  • Fixes for kernel's preemptible_handler and code related to running userspace.
  • Enable userspace. Several dozen instructions are now run in userspace! We are pretty near the userspace milestone for sparc64.
  • Property mode set to 100644
File size: 661 bytes
Line 
1STARTUP(../libc/arch/ARCH/src/entry.o)
2ENTRY(__entry)
3
4PHDRS {
5 text PT_LOAD FLAGS(5);
6 data PT_LOAD FLAGS(6);
7}
8
9SECTIONS {
10 . = 0x2000;
11
12 .init ALIGN(0x2000) : SUBALIGN(0x2000) {
13 *(.init);
14 } :text
15 .text : {
16 *(.text);
17 *(.rodata*);
18 } :text
19
20 .got ALIGN(0x2000) : SUBALIGN(0x2000) {
21 _gp = .;
22 *(.got*);
23 } :data
24 .data ALIGN(0x2000) : SUBALIGN(0x2000) {
25 *(.data);
26 *(.sdata);
27 } :data
28 .tdata : {
29 _tdata_start = .;
30 *(.tdata);
31 _tdata_end = .;
32 } :data
33 .tbss : {
34 _tbss_start = .;
35 *(.tbss);
36 _tbss_end = .;
37 } :data
38 .bss : {
39 *(.sbss);
40 *(COMMON);
41 *(.bss);
42 } :data
43
44 . = ALIGN(0x2000);
45 _heap = .;
46
47 /DISCARD/ : {
48 *(*);
49 }
50
51}
Note: See TracBrowser for help on using the repository browser.