aboutsummaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1997-04-30 16:18:37 +0000
committerIan Lance Taylor <ian@airs.com>1997-04-30 16:18:37 +0000
commitd7450eb7eed21a1c1cafbac1ecd1230fa516d9f2 (patch)
treebb33dc392705a641c2f7b64a999591fb0be065a1 /ld/scripttempl
parent3c8caeb72047f2fc341ee29186a6d24e2e080ce7 (diff)
downloadgdb-d7450eb7eed21a1c1cafbac1ecd1230fa516d9f2.zip
gdb-d7450eb7eed21a1c1cafbac1ecd1230fa516d9f2.tar.gz
gdb-d7450eb7eed21a1c1cafbac1ecd1230fa516d9f2.tar.bz2
revert Alpha/OpenBSD patches
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/.Sanitize1
-rw-r--r--ld/scripttempl/alphabsd.sc68
2 files changed, 0 insertions, 69 deletions
diff --git a/ld/scripttempl/.Sanitize b/ld/scripttempl/.Sanitize
index d9925d2..6bb4274 100644
--- a/ld/scripttempl/.Sanitize
+++ b/ld/scripttempl/.Sanitize
@@ -51,7 +51,6 @@ README
a29k.sc
aix.sc
alpha.sc
-alphabsd.sc
armaout.sc
armcoff.sc
aout.sc
diff --git a/ld/scripttempl/alphabsd.sc b/ld/scripttempl/alphabsd.sc
deleted file mode 100644
index ac4686f..0000000
--- a/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 Net- or OpenBSD.
-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