source: trunk/src/gcc/gcc/config/interix.h@ 557

Last change on this file since 557 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 3.9 KB
Line 
1/* Operating system specific defines to be used when targeting GCC for
2 Interix
3 Copyright (C) 1994, 1995, 1999, 2002 Free Software Foundation, Inc.
4 Donn Terry, Softway Systems, Inc. ([email protected])
5 Modified from code
6 Contributed by Douglas B. Rupp ([email protected]).
7
8This file is part of GNU CC.
9
10GNU CC is free software; you can redistribute it and/or modify
11it under the terms of the GNU General Public License as published by
12the Free Software Foundation; either version 2, or (at your option)
13any later version.
14
15GNU CC is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License for more details.
19
20You should have received a copy of the GNU General Public License
21along with GNU CC; see the file COPYING. If not, write to
22the Free Software Foundation, 59 Temple Place - Suite 330,
23Boston, MA 02111-1307, USA. */
24
25#ifndef TARGET_MEM_FUNCTIONS
26#define TARGET_MEM_FUNCTIONS
27#endif
28
29/* POSIX/Uni-thread only for now. Look at the winnt version
30for windows/multi thread */
31
32/* We need multiple -lc -lcpsx because they mutually refer;
33 that should go away someday */
34
35#undef LIB_SPEC
36#define LIB_SPEC "\
37 %{!shared:%{!dynamic:-lc -lcpsx -lc -lcpsx %$INTERIX_ROOT/usr/lib/psxdll.a \
38 %$INTERIX_ROOT/usr/lib/psxdll2.a \
39 }} \
40 %{!G:%{!dynamic:-lc -lcpsx -lc -lcpsx %$INTERIX_ROOT/usr/lib/psxdll.a \
41 %$INTERIX_ROOT/usr/lib/psxdll2.a \
42 }} \
43 %{dynamic:-lc %$INTERIX_ROOT/usr/lib/psxdll.a \
44 %$INTERIX_ROOT/usr/lib/psxdll2.a \
45 } \
46 %{v}"
47
48#undef LINK_SPEC
49#define LINK_SPEC "%{!shared:-stack 0x400000,0x10000} \
50 -subsystem posix \
51 %{g} \
52 %{dynamic:-Bdynamic} \
53 %{static:-Bstatic} \
54 %{shared:--shared -Bdynamic} \
55 %{G:--shared -Bdynamic} \
56 %{symbolic:--shared -Bsymbolic -Bdynamic} \
57 %{soname*:--soname %*} \
58 %{rpath*:--rpath %*} \
59 "
60
61#undef STARTFILE_SPEC
62#define STARTFILE_SPEC \
63 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}} %{shared:crti%O%s}"
64
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"))
71
72
73#if 0
74/* don't do this until we can sort out the default path issues. MK */
75#undef STANDARD_EXEC_PREFIX
76#define STANDARD_EXEC_PREFIX ""
77
78#undef STANDARD_STARTFILE_PREFIX
79#define STANDARD_STARTFILE_PREFIX ""
80
81#undef TOOLDIR_BASE_PREFIX
82#define TOOLDIR_BASE_PREFIX ""
83
84#endif /* 0 */
85
86#define STDC_0_IN_SYSTEM_HEADERS 1
87
88#define HANDLE_SYSV_PRAGMA
89#undef HANDLE_PRAGMA_WEAK /* until the link format can handle it */
90
91/* Names to predefine in the preprocessor for this target machine. */
92
93#define DBX_DEBUGGING_INFO
94#define SDB_DEBUGGING_INFO
95#undef PREFERRED_DEBUGGING_TYPE
96#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
97
98
99/* TARGET_DEFAULT from configure */
100
101#undef WCHAR_TYPE
102#undef WCHAR_TYPE_SIZE
103#define WCHAR_UNSIGNED 1
104#define WCHAR_TYPE "short unsigned int"
105#define WCHAR_TYPE_SIZE 16
106
107/* Our strategy for finding global constructors is a bit different, although
108 not a lot. */
109#define DO_GLOBAL_CTORS_BODY \
110do { \
111 int i; \
112 unsigned long nptrs; \
113 func_ptr *p; \
114 asm( \
115 " .section .ctor_head, \"rw\"\n" \
116 "1:\n" \
117 " .text \n" \
118 ASM_LOAD_ADDR(1b,%0) \
119 : "=r" (p) : : "cc"); \
120 for (nptrs = 0; p[nptrs] != 0; nptrs++); \
121 for (i = nptrs-1; i >= 0; i--) \
122 p[i] (); \
123} while (0)
124
125#define DO_GLOBAL_DTORS_BODY \
126do { \
127 func_ptr *p; \
128 asm( \
129 " .section .dtor_head, \"rw\"\n" \
130 "1:\n" \
131 " .text \n" \
132 ASM_LOAD_ADDR(1b,%0) \
133 : "=r" (p) : : "cc"); \
134 while (*p) \
135 { \
136 p++; \
137 (*(p-1)) (); \
138 } \
139} while (0)
Note: See TracBrowser for help on using the repository browser.