Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / config / svr4.h
blobf45706b4f761be3be478362c6f1e0007250194d1
1 /* Operating system specific defines to be used when targeting GCC for some
2 generic System V Release 4 system.
3 Copyright (C) 1991, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 Contributed by Ron Guilmette (rfg@monkeys.com).
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 Under Section 7 of GPL version 3, you are granted additional
20 permissions described in the GCC Runtime Library Exception, version
21 3.1, as published by the Free Software Foundation.
23 You should have received a copy of the GNU General Public License and
24 a copy of the GCC Runtime Library Exception along with this program;
25 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
26 <http://www.gnu.org/licenses/>. */
29 /* To use this file, make up a line like that in config.gcc:
31 tm_file="$tm_file elfos.h svr4.h MACHINE/svr4.h"
33 where MACHINE is replaced by the name of the basic hardware that you
34 are targeting for. Then, in the file MACHINE/svr4.h, put any really
35 system-specific defines (or overrides of defines) which you find that
36 you need.
39 /* Define a symbol indicating that we are using svr4.h. */
40 #define USING_SVR4_H
42 /* Cpp, assembler, linker, library, and startfile spec's. */
44 /* Provide an ASM_SPEC appropriate for svr4.
45 If we're not using GAS, we try to support as
46 many of the specialized svr4 assembler options as seems reasonable,
47 given that there are certain options which we can't (or shouldn't)
48 support directly due to the fact that they conflict with other options
49 for other svr4 tools (e.g. ld) or with other options for GCC itself.
50 For example, we don't support the -o (output file) or -R (remove
51 input file) options because GCC already handles these things. We
52 also don't support the -m (run m4) option for the assembler because
53 that conflicts with the -m (produce load map) option of the svr4
54 linker. We do however allow passing arbitrary options to the svr4
55 assembler via the -Wa, option.
57 Note that gcc doesn't allow a space to follow -Y in a -Ym,* or -Yd,*
58 option.
60 The svr4 assembler wants '-' on the command line if it's expected to
61 read its stdin.
64 #ifdef USE_GAS
65 #define SVR4_ASM_SPEC \
66 "%{v:-V} %{Wa,*:%*}"
67 #else
68 #define SVR4_ASM_SPEC \
69 "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*}"
70 #endif
72 #undef ASM_SPEC
73 #define ASM_SPEC SVR4_ASM_SPEC
75 #define AS_NEEDS_DASH_FOR_PIPED_INPUT
77 /* Under svr4, the normal location of the `ld' and `as' programs is the
78 /usr/ccs/bin directory. */
80 #ifndef CROSS_DIRECTORY_STRUCTURE
81 #undef MD_EXEC_PREFIX
82 #define MD_EXEC_PREFIX "/usr/ccs/bin/"
83 #endif
85 /* Under svr4, the normal location of the various *crt*.o files is the
86 /usr/ccs/lib directory. */
88 #ifndef CROSS_DIRECTORY_STRUCTURE
89 #undef MD_STARTFILE_PREFIX
90 #define MD_STARTFILE_PREFIX "/usr/ccs/lib/"
91 #endif
93 /* Provide a LIB_SPEC appropriate for svr4. Here we tack on the default
94 standard C library (unless we are building a shared library). */
96 #undef LIB_SPEC
97 #define LIB_SPEC "%{!shared:%{!symbolic:-lc}}"
99 /* Provide an ENDFILE_SPEC appropriate for svr4. Here we tack on our own
100 magical crtend.o file (see crtstuff.c) which provides part of the
101 support for getting C++ file-scope static object constructed before
102 entering `main', followed by the normal svr3/svr4 "finalizer" file,
103 which is either `gcrtn.o' or `crtn.o'. */
105 #undef ENDFILE_SPEC
106 #define ENDFILE_SPEC "crtend.o%s %{pg:gcrtn.o%s}%{!pg:crtn.o%s}"
108 /* Provide a LINK_SPEC appropriate for svr4. Here we provide support
109 for the special GCC options -static, -shared, and -symbolic which
110 allow us to link things in one of these three modes by applying the
111 appropriate combinations of options at link-time. We also provide
112 support here for as many of the other svr4 linker options as seems
113 reasonable, given that some of them conflict with options for other
114 svr4 tools (e.g. the assembler). In particular, we do support the
115 -z*, -V, -b, -t, -Qy, -Qn, and -YP* options here, and the -e*, -l*,
116 -o*, -r, -s, -u*, and -L* options are directly supported by gcc.c
117 itself. We don't directly support the -m (generate load map)
118 option because that conflicts with the -m (run m4) option of the
119 svr4 assembler. We also don't directly support the svr4 linker's
120 -I* or -M* options because these conflict with existing GCC
121 options. We do however allow passing arbitrary options to the svr4
122 linker via the -Wl, option, in gcc.c. We don't support the svr4
123 linker's -a option at all because it is totally useless and because
124 it conflicts with GCC's own -a option.
126 Note that gcc doesn't allow a space to follow -Y in a -YP,* option.
128 When the -G link option is used (-shared and -symbolic) a final link is
129 not being done. */
131 #undef LINK_SPEC
132 #ifdef CROSS_DIRECTORY_STRUCTURE
133 #define LINK_SPEC "%{h*} %{v:-V} \
134 %{b} \
135 %{static:-dn -Bstatic} \
136 %{shared:-G -dy -z text} \
137 %{symbolic:-Bsymbolic -G -dy -z text} \
138 %{G:-G} \
139 %{YP,*} \
140 %{Qy:} %{!Qn:-Qy}"
141 #else
142 #define LINK_SPEC "%{h*} %{v:-V} \
143 %{b} \
144 %{static:-dn -Bstatic} \
145 %{shared:-G -dy -z text} \
146 %{symbolic:-Bsymbolic -G -dy -z text} \
147 %{G:-G} \
148 %{YP,*} \
149 %{!YP,*:%{p:-Y P,/usr/ccs/lib/libp:/usr/lib/libp:/usr/ccs/lib:/usr/lib} \
150 %{!p:-Y P,/usr/ccs/lib:/usr/lib}} \
151 %{Qy:} %{!Qn:-Qy}"
152 #endif
154 /* Gcc automatically adds in one of the files /usr/ccs/lib/values-Xc.o
155 or /usr/ccs/lib/values-Xa.o for each final link step (depending
156 upon the other gcc options selected, such as -ansi). These files
157 each contain one (initialized) copy of a special variable called
158 `_lib_version'. Each one of these files has `_lib_version' initialized
159 to a different (enum) value. The SVR4 library routines query the
160 value of `_lib_version' at run to decide how they should behave.
161 Specifically, they decide (based upon the value of `_lib_version')
162 if they will act in a strictly ANSI conforming manner or not. */
164 #undef STARTFILE_SPEC
165 #define STARTFILE_SPEC "%{!shared: \
166 %{!symbolic: \
167 %{pg:gcrt1.o%s}%{!pg:%{p:mcrt1.o%s}%{!p:crt1.o%s}}}}\
168 %{pg:gcrti.o%s}%{!pg:crti.o%s} \
169 %{ansi:values-Xc.o%s} \
170 %{!ansi:values-Xa.o%s} \
171 crtbegin.o%s"
173 /* The numbers used to denote specific machine registers in the System V
174 Release 4 DWARF debugging information are quite likely to be totally
175 different from the numbers used in BSD stabs debugging information
176 for the same kind of target machine. Thus, we undefine the macro
177 DBX_REGISTER_NUMBER here as an extra inducement to get people to
178 provide proper machine-specific definitions of DBX_REGISTER_NUMBER
179 (which is also used to provide DWARF registers numbers in dwarfout.c)
180 in their tm.h files which include this file. */
182 #undef DBX_REGISTER_NUMBER
184 /* Define the actual types of some ANSI-mandated types. (These
185 definitions should work for most SVR4 systems). */
187 #undef SIZE_TYPE
188 #define SIZE_TYPE "unsigned int"
190 #undef PTRDIFF_TYPE
191 #define PTRDIFF_TYPE "int"
193 #undef WCHAR_TYPE
194 #define WCHAR_TYPE "long int"
196 #undef WCHAR_TYPE_SIZE
197 #define WCHAR_TYPE_SIZE BITS_PER_WORD
199 #define TARGET_POSIX_IO