X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=apps%2FHawk%2FCVEiCL%2FEiC%2Fsrc%2Fppc403%2Fppc.ld;fp=apps%2FHawk%2FCVEiCL%2FEiC%2Fsrc%2Fppc403%2Fppc.ld;h=0000000000000000000000000000000000000000;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hp=bc0d646c8abeed32c769c57945b2cd34abb758ad;hpb=454138ff8a20f6edb9b65a910101403d8b520643;p=opencv diff --git a/apps/Hawk/CVEiCL/EiC/src/ppc403/ppc.ld b/apps/Hawk/CVEiCL/EiC/src/ppc403/ppc.ld deleted file mode 100644 index bc0d646..0000000 --- a/apps/Hawk/CVEiCL/EiC/src/ppc403/ppc.ld +++ /dev/null @@ -1,78 +0,0 @@ -/* - * This file contains directives for the GNU linker which are specific - * to the Papyrus. - * - * linkcmds,v 1.2 1995/12/19 20:10:38 joel Exp - */ - -OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc", - "elf32-powerpc") -OUTPUT_ARCH(powerpc) -SEARCH_DIR(/ppc); -STARTUP(ppc403/io.o) -ENTRY(_start) - -MEMORY - { - RAM : ORIGIN = 0x7fe00000, LENGTH = 512K - ROM : ORIGIN = 0x7ff10000, LENGTH = 384K - } - -/* Do we need any of these for elf? - __DYNAMIC = 0; */ -SECTIONS -{ -/* .vectors 0x0100 : - { - *(.vectors) - } -*/ - .text : /* code location */ - { - *(.entry) - *(.entry2) - *(.text) - *(.rodata) - *(.rodata1) - } > RAM - - - /* R/W Data */ - .data : - { - *(.descriptors) - *(rom_ver) - *(.sdata) - *(.sdata2) - *(.got2) - *(.fixup) - - *(.data) - *(.data1) - } > RAM - - .bss : - { - bss.start = .; - *(.bss) *(.sbss) *(COMMON) - bss.end = ALIGN(4); - s.got = .; - *(.got.plt) *(.got) - } > RAM - - bss.size = bss.end - bss.start; - PROVIDE(_end = bss.end); - - .line 0 : { *(.line) } - .debug 0 : { *(.debug) } - .debug_sfnames 0 : { *(.debug_sfnames) } - .debug_srcinfo 0 : { *(.debug_srcinfo) } - .debug_pubnames 0 : { *(.debug_pubnames) } - .debug_aranges 0 : { *(.debug_aranges) } - .debug_aregion 0 : { *(.debug_aregion) } - .debug_macinfo 0 : { *(.debug_macinfo) } - .stab 0 : { *(.stab) } - .stabstr 0 : { *(.stabstr) } -} - -