diff options
author | Nick Clifton <nickc@redhat.com> | 2000-02-28 18:56:11 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-02-28 18:56:11 +0000 |
commit | 17505c5cfa9b784633a212f56076576317140ecc (patch) | |
tree | bc26826d81e92cdfa1ea2de3ff1b6b91f3a26894 /bfd/pe-sh.c | |
parent | 77343c58f9a67ff5a644d6ecc1eb8ef5ba87f45a (diff) | |
download | gdb-17505c5cfa9b784633a212f56076576317140ecc.zip gdb-17505c5cfa9b784633a212f56076576317140ecc.tar.gz gdb-17505c5cfa9b784633a212f56076576317140ecc.tar.bz2 |
Add WinCE support.
Diffstat (limited to 'bfd/pe-sh.c')
-rw-r--r-- | bfd/pe-sh.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/bfd/pe-sh.c b/bfd/pe-sh.c new file mode 100644 index 0000000..7e48b0e --- /dev/null +++ b/bfd/pe-sh.c @@ -0,0 +1,31 @@ +/* BFD back-end for SH PECOFF files. + Copyright 1995, 2000 Free Software Foundation, Inc. + +This file is part of BFD, the Binary File Descriptor library. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#include "bfd.h" +#include "sysdep.h" + + +#define TARGET_SHL_SYM shlpe_vec +#define TARGET_SHL_NAME "pe-shl" +#define COFF_WITH_PE +#define PCRELOFFSET true +#define TARGET_UNDERSCORE '_' +#define COFF_LONG_SECTION_NAMES + +#include "coff-sh.c" |