UDI/Tools - Moved udi* tools to UDI/ tree
[tpg/acess2.git] / UDI / Tools / udisetup-ia32.ld
diff --git a/UDI/Tools/udisetup-ia32.ld b/UDI/Tools/udisetup-ia32.ld
new file mode 100644 (file)
index 0000000..d315ca7
--- /dev/null
@@ -0,0 +1,31 @@
+OUTPUT_FORMAT(elf32-i386)
+
+SECTIONS 
+{
+       . = 0 + SIZEOF_HEADERS;
+       
+       .text : AT(ADDR(.text)) {
+               textzero = .;
+               *(.text)
+       }
+       
+       .rodata ALIGN(0x1000): AT(ADDR(.rodata)) {
+               *(.rodata)
+               *(.rdata)
+       }
+       
+       .data ALIGN (0x1000) : AT(ADDR(.data)) {
+               *(.data)
+               _udiprops = .;
+               *(.udiprops)
+               _udiprops_end = .;
+       }
+
+       .bss : AT(ADDR(.bss)) {
+               _sbss = .;
+               *(COMMON)
+               *(.bss)
+               _ebss = .;
+       }
+}
+

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