1 /* Operating system specific defines to be used when targeting GCC for
3 Copyright (C) 1994, 1995, 1999, 2002 Free Software Foundation, Inc.
4 Donn Terry, Softway Systems, Inc. (donn@softway.com)
6 Contributed by Douglas B. Rupp (drupp@cs.washington.edu).
8 This file is part of GNU CC.
10 GNU CC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
15 GNU CC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GNU CC; see the file COPYING. If not, write to
22 the Free Software Foundation, 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
25 #ifndef TARGET_MEM_FUNCTIONS
26 #define TARGET_MEM_FUNCTIONS
29 /* POSIX/Uni-thread only for now. Look at the winnt version
30 for windows/multi thread */
32 /* We need multiple -lc -lcpsx because they mutually refer;
33 that should go away someday */
37 %{!shared:%{!dynamic:-lc -lcpsx -lc -lcpsx %$INTERIX_ROOT/usr/lib/psxdll.a \
38 %$INTERIX_ROOT/usr/lib/psxdll2.a \
40 %{!G:%{!dynamic:-lc -lcpsx -lc -lcpsx %$INTERIX_ROOT/usr/lib/psxdll.a \
41 %$INTERIX_ROOT/usr/lib/psxdll2.a \
43 %{dynamic:-lc %$INTERIX_ROOT/usr/lib/psxdll.a \
44 %$INTERIX_ROOT/usr/lib/psxdll2.a \
49 #define LINK_SPEC "%{!shared:-stack 0x400000,0x10000} \
52 %{dynamic:-Bdynamic} \
54 %{shared:--shared -Bdynamic} \
55 %{G:--shared -Bdynamic} \
56 %{symbolic:--shared -Bsymbolic -Bdynamic} \
57 %{soname*:--soname %*} \
58 %{rpath*:--rpath %*} \
62 #define STARTFILE_SPEC \
63 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}} %{shared:crti%O%s}"
65 #undef WORD_SWITCH_TAKES_ARG
66 #define WORD_SWITCH_TAKES_ARG(STR) \
67 ((DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \
68 || !strcmp(STR, "rpath")) \
69 && strcmp (STR, "Tdata") && strcmp (STR, "Ttext") \
70 && strcmp (STR, "Tbss"))
73 #define STDC_0_IN_SYSTEM_HEADERS 1
75 #define HANDLE_SYSV_PRAGMA 1
76 #undef HANDLE_PRAGMA_WEAK /* until the link format can handle it */
78 /* Names to predefine in the preprocessor for this target machine. */
80 #define DBX_DEBUGGING_INFO 1
81 #define SDB_DEBUGGING_INFO 1
82 #undef PREFERRED_DEBUGGING_TYPE
83 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
86 /* TARGET_DEFAULT from configure */
89 #undef WCHAR_TYPE_SIZE
90 #define WCHAR_TYPE "short unsigned int"
91 #define WCHAR_TYPE_SIZE 16
93 /* Our strategy for finding global constructors is a bit different, although
95 #define DO_GLOBAL_CTORS_BODY \
98 unsigned long nptrs; \
101 " .section .ctor_head, \"rw\"\n" \
104 ASM_LOAD_ADDR(1b,%0) \
105 : "=r" (p) : : "cc"); \
106 for (nptrs = 0; p[nptrs] != 0; nptrs++); \
107 for (i = nptrs-1; i >= 0; i--) \
111 #define DO_GLOBAL_DTORS_BODY \
115 " .section .dtor_head, \"rw\"\n" \
118 ASM_LOAD_ADDR(1b,%0) \
119 : "=r" (p) : : "cc"); \