1117395Skan/* Support for GCC on PowerPC using WindISS simulator.
2132718Skan   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
3117395Skan   Contributed by CodeSourcery, LLC.
4117395Skan
5132718Skan   This file is part of GCC.
6117395Skan
7132718Skan   GCC is free software; you can redistribute it and/or modify it
8132718Skan   under the terms of the GNU General Public License as published
9132718Skan   by the Free Software Foundation; either version 2, or (at your
10132718Skan   option) any later version.
11117395Skan
12132718Skan   GCC is distributed in the hope that it will be useful, but WITHOUT
13132718Skan   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14132718Skan   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15132718Skan   License for more details.
16117395Skan
17132718Skan   You should have received a copy of the GNU General Public License
18132718Skan   along with GCC; see the file COPYING.  If not, write to the
19169689Skan   Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
20169689Skan   MA 02110-1301, USA.  */
21117395Skan
22132718Skan#undef  TARGET_VERSION
23117395Skan#define TARGET_VERSION fprintf (stderr, " (PowerPC WindISS)");
24117395Skan
25132718Skan#undef  LIB_DEFAULT_SPEC
26117395Skan#define LIB_DEFAULT_SPEC "%(lib_windiss)"
27117395Skan
28132718Skan#undef  STARTFILE_DEFAULT_SPEC
29117395Skan#define STARTFILE_DEFAULT_SPEC "%(startfile_windiss)"
30117395Skan
31132718Skan#undef  ENDFILE_DEFAULT_SPEC
32117395Skan#define ENDFILE_DEFAULT_SPEC "%(endfile_windiss)"
33117395Skan
34117395Skan#undef	LINK_START_DEFAULT_SPEC
35117395Skan#define LINK_START_DEFAULT_SPEC "%(link_start_windiss)"
36117395Skan
37117395Skan#undef	LINK_OS_DEFAULT_SPEC
38117395Skan#define LINK_OS_DEFAULT_SPEC "%(link_os_windiss)"
39117395Skan
40132718Skan#undef  CRTSAVRES_DEFAULT_SPEC
41117395Skan#define CRTSAVRES_DEFAULT_SPEC ""
42117395Skan
43132718Skan#undef  WCHAR_TYPE
44117395Skan#define WCHAR_TYPE "short unsigned int"
45117395Skan
46132718Skan#undef  WCHAR_TYPE_SIZE
47117395Skan#define WCHAR_TYPE_SIZE 16
48