1139823Simp/* BFD back-end for ARM WINCE PE files.
211819Sjulian   Copyright 2006 Free Software Foundation, Inc.
311819Sjulian
411819Sjulian   This file is part of BFD, the Binary File Descriptor library.
511819Sjulian
611819Sjulian   This program is free software; you can redistribute it and/or modify
711819Sjulian   it under the terms of the GNU General Public License as published by
811819Sjulian   the Free Software Foundation; either version 2 of the License, or
911819Sjulian   (at your option) any later version.
1011819Sjulian
1111819Sjulian   This program is distributed in the hope that it will be useful,
1211819Sjulian   but WITHOUT ANY WARRANTY; without even the implied warranty of
13165899Srwatson   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14165899Srwatson   GNU General Public License for more details.
15165899Srwatson
16165899Srwatson   You should have received a copy of the GNU General Public License
17165899Srwatson   along with this program; if not, write to the Free Software
18165899Srwatson   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
19165899Srwatson
20165899Srwatson#define TARGET_UNDERSCORE    0
21165899Srwatson#define USER_LABEL_PREFIX    ""
22165899Srwatson
23165899Srwatson#define TARGET_LITTLE_SYM    arm_wince_pe_little_vec
24165899Srwatson#define TARGET_LITTLE_NAME   "pe-arm-wince-little"
25165899Srwatson#define TARGET_BIG_SYM       arm_wince_pe_big_vec
26165899Srwatson#define TARGET_BIG_NAME      "pe-arm-wince-big"
27165899Srwatson
28165899Srwatson#define bfd_arm_allocate_interworking_sections \
29165899Srwatson  bfd_arm_wince_pe_allocate_interworking_sections
30165899Srwatson#define bfd_arm_get_bfd_for_interworking \
31165899Srwatson  bfd_arm_wince_pe_get_bfd_for_interworking
32165899Srwatson#define bfd_arm_process_before_allocation \
33165899Srwatson  bfd_arm_wince_pe_process_before_allocation
34165899Srwatson
35165899Srwatson#define LOCAL_LABEL_PREFIX "."
36165899Srwatson
37165899Srwatson#include "pe-arm.c"
38165899Srwatson