From: Steve Chamberlain Date: Wed, 10 Jun 1992 14:44:52 +0000 (+0000) Subject: Keep this just in case X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb63f602dd69131532d96b654e1d3aa51ea9087d;p=binutils-gdb.git Keep this just in case --- diff --git a/ld/scripts/isc-sysv3.2.sc b/ld/scripts/isc-sysv3.2.sc new file mode 100644 index 00000000000..db5f1bce252 --- /dev/null +++ b/ld/scripts/isc-sysv3.2.sc @@ -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 = . ; + } +}