1f7cc78ecSespie /* BFD back-end for ARM EPOC PE files. 2*5f210c2aSfgsch Copyright 1999, 2000 Free Software Foundation, Inc. 3f7cc78ecSespie 4f7cc78ecSespie This file is part of BFD, the Binary File Descriptor library. 5f7cc78ecSespie 6f7cc78ecSespie This program is free software; you can redistribute it and/or modify 7f7cc78ecSespie it under the terms of the GNU General Public License as published by 8f7cc78ecSespie the Free Software Foundation; either version 2 of the License, or 9f7cc78ecSespie (at your option) any later version. 10f7cc78ecSespie 11f7cc78ecSespie This program is distributed in the hope that it will be useful, 12f7cc78ecSespie but WITHOUT ANY WARRANTY; without even the implied warranty of 13f7cc78ecSespie MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14f7cc78ecSespie GNU General Public License for more details. 15f7cc78ecSespie 16f7cc78ecSespie You should have received a copy of the GNU General Public License 17f7cc78ecSespie along with this program; if not, write to the Free Software 18f7cc78ecSespie Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 19f7cc78ecSespie 20f7cc78ecSespie #define TARGET_UNDERSCORE 0 21f7cc78ecSespie #define USER_LABEL_PREFIX "" 22f7cc78ecSespie 23f7cc78ecSespie #define TARGET_LITTLE_SYM arm_epoc_pe_little_vec 24f7cc78ecSespie #define TARGET_LITTLE_NAME "epoc-pe-arm-little" 25f7cc78ecSespie #define TARGET_BIG_SYM arm_epoc_pe_big_vec 26f7cc78ecSespie #define TARGET_BIG_NAME "epoc-pe-arm-big" 27f7cc78ecSespie 28f7cc78ecSespie #define bfd_arm_allocate_interworking_sections \ 29f7cc78ecSespie bfd_arm_epoc_pe_allocate_interworking_sections 30f7cc78ecSespie #define bfd_arm_get_bfd_for_interworking \ 31f7cc78ecSespie bfd_arm_epoc_pe_get_bfd_for_interworking 32f7cc78ecSespie #define bfd_arm_process_before_allocation \ 33f7cc78ecSespie bfd_arm_epoc_pe_process_before_allocation 34f7cc78ecSespie 35*5f210c2aSfgsch #define EXTRA_S_FLAGS (SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_CODE | SEC_READONLY | SEC_DATA) 36f7cc78ecSespie 37*5f210c2aSfgsch #include "pe-arm.c" 38