mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00:00
revert Alpha/OpenBSD patches
This commit is contained in:
parent
3c8caeb720
commit
d7450eb7ee
@ -60,7 +60,6 @@ a29k.sh
|
||||
aixppc.sh
|
||||
aixrs6.sh
|
||||
alpha.sh
|
||||
alphabsd.sh
|
||||
armaoutb.sh
|
||||
armaoutl.sh
|
||||
armcoff.sh
|
||||
|
@ -1,3 +0,0 @@
|
||||
SCRIPT_NAME=alphabsd
|
||||
OUTPUT_FORMAT="bsd-ecoff-littlealpha"
|
||||
ARCH=alpha
|
@ -51,7 +51,6 @@ README
|
||||
a29k.sc
|
||||
aix.sc
|
||||
alpha.sc
|
||||
alphabsd.sc
|
||||
armaout.sc
|
||||
armcoff.sc
|
||||
aout.sc
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user