diff options
author | Alan Modra <amodra@gmail.com> | 2018-04-16 20:29:05 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2018-04-16 20:29:05 +0930 |
commit | ddb000396c9246649e02669e0bd6ad3949973e5a (patch) | |
tree | 18fb2f42dd7e9c2088078ab2fdf99268fcaac450 /bfd/epoc-pei-arm.c | |
parent | 5452f388a51463394553b29469e32e7765d874e1 (diff) | |
download | fsf-binutils-gdb-ddb000396c9246649e02669e0bd6ad3949973e5a.zip fsf-binutils-gdb-ddb000396c9246649e02669e0bd6ad3949973e5a.tar.gz fsf-binutils-gdb-ddb000396c9246649e02669e0bd6ad3949973e5a.tar.bz2 |
Remove arm-epoc-pe support
bfd/
* Makefile.am: Remove arm-epoc-pe support.
* coff-arm.c: Likewise.
* config.bfd: Likewise.
* configure.ac: Likewise.
* targets.c: Likewise.
* epoc-pe-arm.c: Delete.
* epoc-pei-arm.c: Delete.
* Makefile.in: Regenerate.
* configure: Regenerate.
* po/SRC-POTFILES.in: Regenerate.
binutils/
* configure.ac: Remove arm-epoc-pe support.
* dlltool.c: Likewise.
* configure: Regenerate.
gas/
* Makefile.am: Remove arm-epoc-pe support.
* config/tc-arm.h: Likewise.
* configure.tgt: Likewise.
* testsuite/gas/all/gas.exp: Likewise.
* testsuite/gas/arm/local_label_coff.d: Likewise.
* testsuite/gas/arm/undefined.d: Likewise.
* testsuite/gas/arm/undefined_coff.d: Likewise.
* config/te-epoc-pe.h: Delete.
* Makefile.in: Regenerate.
* po/POTFILES.in: Regenerate.
ld/
* Makefile.am: Remove arm-epoc-pe support.
* configure.tgt: Likewise.
* emultempl/pe.em: Likewise.
* pe-dll.c: Likewise.
* testsuite/ld-scripts/fill.d: Likewise.
* testsuite/ld-scripts/fill16.d: Likewise.
* emulparams/arm_epoc_pe.sh: Delete.
* scripttempl/epocpe.sc: Delete.
* Makefile.in: Regenerate.
* po/BLD-POTFILES.in: Regenerate.
Diffstat (limited to 'bfd/epoc-pei-arm.c')
-rw-r--r-- | bfd/epoc-pei-arm.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/bfd/epoc-pei-arm.c b/bfd/epoc-pei-arm.c deleted file mode 100644 index 8b32aaf..0000000 --- a/bfd/epoc-pei-arm.c +++ /dev/null @@ -1,31 +0,0 @@ -/* BFD back-end for ARM EPOC PE IMAGE COFF files. - Copyright (C) 1999-2018 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 3 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., 51 Franklin Street - Fifth Floor, Boston, - MA 02110-1301, USA. */ - -#define TARGET_UNDERSCORE 0 -#define USER_LABEL_PREFIX "" - -#define TARGET_LITTLE_SYM arm_pei_epoc_le_vec -#define TARGET_LITTLE_NAME "epoc-pei-arm-little" -#define TARGET_BIG_SYM arm_pei_epoc_be_vec -#define TARGET_BIG_NAME "epoc-pei-arm-big" - -#define EXTRA_S_FLAGS (SEC_CODE | SEC_READONLY | SEC_DATA) - -#include "pei-arm.c" |