]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/config/m68k/aux-low.gld
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / config / m68k / aux-low.gld
diff --git a/gcc/config/m68k/aux-low.gld b/gcc/config/m68k/aux-low.gld
deleted file mode 100644 (file)
index d1bb2a9..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* GLD link script for building mac-compatible executables */
-
-OUTPUT_FORMAT("coff-m68k")
-
-SEARCH_DIR(@tooldir@/lib);
-SEARCH_DIR(@libdir@);
-SEARCH_DIR(/lib);
-SEARCH_DIR(/usr/lib);
-SEARCH_DIR(@local_prefix@/lib);
-
-ENTRY(_start)
-
-SECTIONS 
-{
-       .lowmem 0 (DSECT) : { 
-               /usr/lib/low.o (.data)
-       }
-       .text 0x10000000 : {
-               *(.text)
-               *(.init)
-               *(.fini)
-               etext = .;
-               _etext = .;
-       }
-       .data ALIGN(0x40000) : {
-               *(.data)
-               *(.ctors)
-               *(.dtors)
-               edata = .;
-               _edata = .;
-       }
-       .bss : {
-               *(.bss)
-               *(COMMON)
-               end = .;
-               _end = .;
-       }
-}