Keep this just in case
authorSteve Chamberlain <sac@cygnus>
Wed, 10 Jun 1992 14:44:52 +0000 (14:44 +0000)
committerSteve Chamberlain <sac@cygnus>
Wed, 10 Jun 1992 14:44:52 +0000 (14:44 +0000)
ld/scripts/isc-sysv3.2.sc [new file with mode: 0644]

diff --git a/ld/scripts/isc-sysv3.2.sc b/ld/scripts/isc-sysv3.2.sc
new file mode 100644 (file)
index 0000000..db5f1bc
--- /dev/null
@@ -0,0 +1,36 @@
+/* 
+Script by mohring@informatik.tu-muenchen.de
+for ISC SYSV 3.2/386 
+*/
+TARGET("coff-i386")
+OUTPUT_FORMAT("coff-i386")
+OUTPUT_ARCH(i386)
+SEARCH_DIR(/lib)
+SEARCH_DIR(/usr/lib)
+SEARCH_DIR(/usr/local/lib)
+SEARCH_DIR(/usr2/lib)
+ENTRY(_start)
+
+SECTIONS {
+       .text SIZEOF_HEADERS :
+               {
+               CREATE_OBJECT_SYMBOLS
+               *(.init);
+               *(.text);
+               *(.fini);
+               etext = . ;
+               }
+
+       .data NEXT(0x400000) + (SIZEOF(.text) + ADDR(.text)) % 0x2000:
+               {
+               *(.data);
+               edata = . ;
+               }
+
+       .bss SIZEOF(.data) + ADDR(.data) :
+               { 
+               *(.bss);
+               [COMMON]
+               end = . ;
+               }
+}