Fixed compile issues in AxWin2 WM
[tpg/acess2.git] / Usermode / Libraries / ld-acess.so_src / link.ld
1 ENTRY(SoMain)
2 OUTPUT_FORMAT(elf32-i386)
3
4 SECTIONS {
5     . = 0xBBFF0000;
6     gLinkedBase = .;
7
8    .text : AT(ADDR(.text)) {
9         code = .;
10         *(.text)
11         *(.rodata*)
12    }
13
14    .data ALIGN (0x1000) : AT(ADDR(.data)) {
15         data = .;
16         *(.data)
17    }
18
19    .bss ALIGN (0x1000) : AT(ADDR(.bss)) {
20         _sbss = .;
21         *(COMMON)
22         *(.bss)
23         _ebss = .;
24         bss = .;
25    }
26    _end = .;
27 }

UCC git Repository :: git.ucc.asn.au