diff options
author | David MacKenzie <djm@cygnus> | 1993-06-17 21:21:21 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1993-06-17 21:21:21 +0000 |
commit | 6fa11e9f43dee979026d9915fd9b2eb7265e7f7e (patch) | |
tree | 5af5625da82cfee43d59b254fbdbf6891f2cd4dc /ld/sa29200.sc-sh | |
parent | e89ea690c9a232f65df9fe745da7584f488ea0e7 (diff) | |
download | gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.zip gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.tar.gz gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.tar.bz2 |
Moved to scripttempl subdir.
Diffstat (limited to 'ld/sa29200.sc-sh')
-rwxr-xr-x | ld/sa29200.sc-sh | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/ld/sa29200.sc-sh b/ld/sa29200.sc-sh deleted file mode 100755 index 6526614..0000000 --- a/ld/sa29200.sc-sh +++ /dev/null @@ -1,44 +0,0 @@ -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -ENTRY(start) - -SECTIONS { - .text ${RELOCATING+${TEXT_START_ADDR}} : - { - *(.text); - *(.text1); - *(.text2); - ${RELOCATING+_etext = .}; - } - .lit . : - { - *(.lit); - ${RELOCATING+_elit = .}; - } - .data . : - { - *(.data); - *(.data1); - *(.data2); - ${RELOCATING+_edata = .}; - ${CONSTRUCTING+CONSTRUCTORS} - ${CONSTRUCTING+ ___CTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((___CTOR_END__ - ___CTOR_LIST__) / 4 - 2)} - *(.ctors) - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ ___CTOR_END__ = .;} - ${CONSTRUCTING+ ___DTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((___DTOR_END__ - ___DTOR_LIST__) / 4 - 2)} - *(.dtors) - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ ___DTOR_END__ = .;} - } - - .bss . : - { - *(COMMON) - *(.bss) - ${RELOCATING+_end = .}; - } -} -EOF |