diff options
author | Steve Chamberlain <sac@cygnus> | 1992-05-02 02:09:20 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-05-02 02:09:20 +0000 |
commit | 0fdf9f815be3e0b964460e86883c0dc721aea16f (patch) | |
tree | 529758b17ba95ffc92acc347e6e9e58b8d7b57ef /ld/sa29200.sc-sh | |
parent | fe3e4dfcfd69bdce50c3d9cede20ce3612b8a2f5 (diff) | |
download | gdb-0fdf9f815be3e0b964460e86883c0dc721aea16f.zip gdb-0fdf9f815be3e0b964460e86883c0dc721aea16f.tar.gz gdb-0fdf9f815be3e0b964460e86883c0dc721aea16f.tar.bz2 |
More 29200 stuff
Diffstat (limited to 'ld/sa29200.sc-sh')
-rwxr-xr-x | ld/sa29200.sc-sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ld/sa29200.sc-sh b/ld/sa29200.sc-sh new file mode 100755 index 0000000..ede39d6 --- /dev/null +++ b/ld/sa29200.sc-sh @@ -0,0 +1,24 @@ +cat <<EOF +OUTPUT_FORMAT("${OUTPUT_FORMAT}") +ENTRY(start) + +SECTIONS { + .text ${RELOCATING+${TEXT_START_ADDR}} : + { + *(.text); + ${RELOCATING+_etext = .}; + } + data . : + { + *(.data); + ${RELOCATING+_edata = .}; + ${CONSTRUCTING+CONSTRUCTORS} + } + .bss . : + { + *(COMMON) + *(.bss) + ${RELOCATING+_end = .}; + } +} +EOF |