diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-05-14 08:33:06 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-05-14 08:33:06 +0000 |
commit | e6d4167e98f1ddb9cbdd73a74df9fb6bd56ac6ae (patch) | |
tree | 18e488cef28a7619a6fc87e8063fa66399540264 /gnu/usr.bin | |
parent | cdc8a44750fe9238655878d24f66f5b676428e66 (diff) |
no longer needed; byebye.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/ld/emulparams/alphabsd.sh | 3 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/ld/scripttempl/alphabsd.sc | 68 |
2 files changed, 0 insertions, 71 deletions
diff --git a/gnu/usr.bin/binutils/ld/emulparams/alphabsd.sh b/gnu/usr.bin/binutils/ld/emulparams/alphabsd.sh deleted file mode 100644 index 29b9d3ab940..00000000000 --- a/gnu/usr.bin/binutils/ld/emulparams/alphabsd.sh +++ /dev/null @@ -1,3 +0,0 @@ -SCRIPT_NAME=alphabsd -OUTPUT_FORMAT="ecoff-littlealpha" -ARCH=alpha diff --git a/gnu/usr.bin/binutils/ld/scripttempl/alphabsd.sc b/gnu/usr.bin/binutils/ld/scripttempl/alphabsd.sc deleted file mode 100644 index 66feee12e73..00000000000 --- a/gnu/usr.bin/binutils/ld/scripttempl/alphabsd.sc +++ /dev/null @@ -1,68 +0,0 @@ -# Linker script for {Net,Open}BSD/Alpha systems. -# Ian Lance Taylor <ian@cygnus.com>. -# These variables may be overridden by the emulation file. The -# defaults are appropriate for an Alpha running NetBSD. -test -z "$ENTRY" && ENTRY=__start -test -z "$TEXT_START_ADDR" && TEXT_START_ADDR="0x120000000 + SIZEOF_HEADERS" -if test "x$LD_FLAG" = "xn" -o "x$LD_FLAG" = "xN"; then - DATA_ADDR=. -else - test -z "$DATA_ADDR" && DATA_ADDR=0x140000000 -fi -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${LIB_SEARCH_DIRS} - -ENTRY(${ENTRY}) - -SECTIONS -{ - ${RELOCATING+. = ${TEXT_START_ADDR};} - .text : { - ${RELOCATING+ _ftext = . }; - ${RELOCATING+ eprol = .}; - *(.text) - ${RELOCATING+ _etext = .}; - ${RELOCATING+ etext = .}; - } - .rdata : { - *(.rdata) - } - .pdata : { - ${RELOCATING+ _fpdata = .;} - *(.pdata) - } - ${RELOCATING+. = ${DATA_ADDR};} - .data : { - ${RELOCATING+ _fdata = .;} - *(.data) - ${CONSTRUCTING+CONSTRUCTORS} - } - .xdata : { - *(.xdata) - } - ${RELOCATING+ _gp = ALIGN (16) + 0x8000;} - .lit8 : { - *(.lit8) - } - .lita : { - *(.lita) - } - .sdata : { - *(.sdata) - } - ${RELOCATING+ _EDATA = .;} - ${RELOCATING+ edata = .;} - ${RELOCATING+ _FBSS = .;} - .sbss : { - *(.sbss) - *(.scommon) - } - .bss : { - *(.bss) - *(COMMON) - } - ${RELOCATING+ _end = .;} - ${RELOCATING+ end = .;} -} -EOF |