mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +08:00
Sanitize slip
This commit is contained in:
@ -59,6 +59,7 @@ h8300xray.em
|
|||||||
h8300xray.sc-sh
|
h8300xray.sc-sh
|
||||||
h8300xray.sh
|
h8300xray.sh
|
||||||
i386aout.sh
|
i386aout.sh
|
||||||
|
i386coff.sc-sh
|
||||||
i386coff.sh
|
i386coff.sh
|
||||||
i960.sc-sh
|
i960.sc-sh
|
||||||
ld.h
|
ld.h
|
||||||
@ -126,6 +127,9 @@ echo Done in `pwd`.
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.46 1992/09/11 20:43:30 sac
|
||||||
|
# Sanitize slip
|
||||||
|
#
|
||||||
# Revision 1.45 1992/09/11 17:47:22 sac
|
# Revision 1.45 1992/09/11 17:47:22 sac
|
||||||
# Add i386coff.sh
|
# Add i386coff.sh
|
||||||
#
|
#
|
||||||
|
39
ld/i386coff.sc-sh
Normal file
39
ld/i386coff.sc-sh
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# This is totally made up, from the a29k stuff. If you know better,
|
||||||
|
# tell us about it.
|
||||||
|
cat <<EOF
|
||||||
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
||||||
|
${LIB_SEARCH_DIRS}
|
||||||
|
|
||||||
|
MEMORY {
|
||||||
|
text : ORIGIN = 0x1000000, LENGTH = 0x1000000
|
||||||
|
talias : ORIGIN = 0x2000000, LENGTH = 0x1000000
|
||||||
|
data : ORIGIN = 0x3000000, LENGTH = 0x1000000
|
||||||
|
mstack : ORIGIN = 0x4000000, LENGTH = 0x1000000
|
||||||
|
rstack : ORIGIN = 0x5000000, LENGTH = 0x1000000
|
||||||
|
}
|
||||||
|
SECTIONS
|
||||||
|
{
|
||||||
|
.text : {
|
||||||
|
*(.text)
|
||||||
|
${RELOCATING+ _etext = .};
|
||||||
|
*(.lit)
|
||||||
|
*(.shdata)
|
||||||
|
} ${RELOCATING+ > text}
|
||||||
|
.shbss SIZEOF(.text) + ADDR(.text) : {
|
||||||
|
*(.shbss)
|
||||||
|
}
|
||||||
|
.talias : { } ${RELOCATING+ > talias}
|
||||||
|
.data : {
|
||||||
|
*(.data)
|
||||||
|
${RELOCATING+ _edata = .};
|
||||||
|
} ${RELOCATING+ > data}
|
||||||
|
.bss SIZEOF(.data) + ADDR(.data) :
|
||||||
|
{
|
||||||
|
*(.bss)
|
||||||
|
*(COMMON)
|
||||||
|
${RELOCATING+ _end = ALIGN(0x8)};
|
||||||
|
}
|
||||||
|
.mstack : { } ${RELOCATING+ > mstack}
|
||||||
|
.rstack : { } ${RELOCATING+ > rstack}
|
||||||
|
}
|
||||||
|
EOF
|
Reference in New Issue
Block a user