diff options
author | Steve Chamberlain <sac@cygnus> | 1992-09-25 18:11:04 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-09-25 18:11:04 +0000 |
commit | 22a78f0d961fdab4eadf6694a636a6b57d3013ad (patch) | |
tree | 07a7b2d21ae74990a8f586b78e8fe40db64b86e1 /ld/z8ksim.sc-sh | |
parent | f4e56031512d5c5621fa2e21e7f3e964718ff39c (diff) | |
download | gdb-22a78f0d961fdab4eadf6694a636a6b57d3013ad.zip gdb-22a78f0d961fdab4eadf6694a636a6b57d3013ad.tar.gz gdb-22a78f0d961fdab4eadf6694a636a6b57d3013ad.tar.bz2 |
Fri Sep 25 11:08:01 1992 Steve Chamberlain (sac@thepub.cygnus.com)
Added initial support for the z8k
* z8ksim.em, z8ksim.sc-sh, z8ksim.sh: new files
* configure.in, Makefile.in: modified to reflect above
* ldlang.c (lang_check): when linking conflicting architectures,
make the output file reflect at least one of the bad inputs.
Diffstat (limited to 'ld/z8ksim.sc-sh')
-rwxr-xr-x | ld/z8ksim.sc-sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ld/z8ksim.sc-sh b/ld/z8ksim.sc-sh new file mode 100755 index 0000000..7ee132a --- /dev/null +++ b/ld/z8ksim.sc-sh @@ -0,0 +1,26 @@ +cat <<EOF +OUTPUT_FORMAT("${OUTPUT_FORMAT}") +OUTPUT_ARCH(${ARCH}) + + +SECTIONS +{ +.text : + { + *(.text) + *(.strings) + _etext = .; + *(.data) + _edata = .; + *(.bss) + *(COMMON) + _end = .; + +} + +} +EOF + + + + |