1 /* Operating system specific defines to be used when targeting GCC for any
3 Copyright (C) 2002-2014 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* We are compiling for Solaris 2 now. */
22 #define TARGET_SOLARIS 1
24 /* Solaris 2 (at least as of 2.5.1) uses a 32-bit wchar_t. */
26 #define WCHAR_TYPE "long int"
28 #undef WCHAR_TYPE_SIZE
29 #define WCHAR_TYPE_SIZE BITS_PER_WORD
31 /* Solaris 2 uses a wint_t different from the default. This is required
32 by the SCD 2.4.1, p. 6-83, Figure 6-66. */
34 #define WINT_TYPE "long int"
37 #define WINT_TYPE_SIZE BITS_PER_WORD
39 #define SIG_ATOMIC_TYPE "int"
41 /* ??? This definition of int8_t follows the system header but does
42 not conform to C99. Likewise int_fast8_t, int_least8_t. */
43 #define INT8_TYPE "char"
44 #define INT16_TYPE "short int"
45 #define INT32_TYPE "int"
46 #define INT64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
47 #define UINT8_TYPE "unsigned char"
48 #define UINT16_TYPE "short unsigned int"
49 #define UINT32_TYPE "unsigned int"
50 #define UINT64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
52 #define INT_LEAST8_TYPE "char"
53 #define INT_LEAST16_TYPE "short int"
54 #define INT_LEAST32_TYPE "int"
55 #define INT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
56 #define UINT_LEAST8_TYPE "unsigned char"
57 #define UINT_LEAST16_TYPE "short unsigned int"
58 #define UINT_LEAST32_TYPE "unsigned int"
59 #define UINT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
61 #define INT_FAST8_TYPE "char"
62 #define INT_FAST16_TYPE "int"
63 #define INT_FAST32_TYPE "int"
64 #define INT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
65 #define UINT_FAST8_TYPE "unsigned char"
66 #define UINT_FAST16_TYPE "unsigned int"
67 #define UINT_FAST32_TYPE "unsigned int"
68 #define UINT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
70 #define INTPTR_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "int")
71 #define UINTPTR_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "unsigned int")
73 #undef CPP_SUBTARGET_SPEC
74 #define CPP_SUBTARGET_SPEC "\
75 %{pthreads|pthread:-D_REENTRANT -D_PTHREADS}"
77 /* Names to predefine in the preprocessor for this target machine. */
78 #define TARGET_SUB_OS_CPP_BUILTINS()
79 #define TARGET_OS_CPP_BUILTINS() \
81 builtin_define_std ("unix"); \
82 builtin_define_std ("sun"); \
83 builtin_define ("__svr4__"); \
84 builtin_define ("__SVR4"); \
85 builtin_assert ("system=unix"); \
86 builtin_assert ("system=svr4"); \
87 /* For C++ we need to add some additional macro \
88 definitions required by the C++ standard \
90 if (c_dialect_cxx ()) \
92 builtin_define ("__STDC_VERSION__=199901L");\
93 builtin_define ("_XOPEN_SOURCE=600"); \
94 builtin_define ("_LARGEFILE_SOURCE=1"); \
95 builtin_define ("_LARGEFILE64_SOURCE=1"); \
96 builtin_define ("__EXTENSIONS__"); \
98 TARGET_SUB_OS_CPP_BUILTINS(); \
101 #define SUBTARGET_OVERRIDE_OPTIONS \
103 solaris_override_options (); \
107 /* It's safe to pass -s always, even if -g is not used. Those options are
108 handled by both Sun as and GNU as. */
109 #define ASM_SPEC_BASE \
110 "%{v:-V} %{Qy:} %{!Qn:-Qy} %{Ym,*} -s %(asm_cpu)"
112 #define ASM_PIC_SPEC " %{fpic|fpie|fPIC|fPIE:-K PIC}"
117 %{pthreads|pthread:-lpthread} \
118 %{pthreads|pthread|fprofile-generate*:" LIB_TLS_SPEC "} \
121 #ifndef CROSS_DIRECTORY_STRUCTURE
122 #undef MD_EXEC_PREFIX
123 #define MD_EXEC_PREFIX "/usr/ccs/bin/"
125 #undef MD_STARTFILE_PREFIX
126 #define MD_STARTFILE_PREFIX "/usr/ccs/lib/"
129 #undef STARTFILE_ARCH32_SPEC
130 #define STARTFILE_ARCH32_SPEC "%{ansi:values-Xc.o%s} \
131 %{!ansi:values-Xa.o%s}"
133 #undef STARTFILE_ARCH_SPEC
134 #define STARTFILE_ARCH_SPEC STARTFILE_ARCH32_SPEC
136 /* We don't use the standard svr4 STARTFILE_SPEC because it's wrong for us. */
137 #undef STARTFILE_SPEC
138 #define STARTFILE_SPEC "%{!shared: \
142 %{pg:gcrt1.o%s gmon.o%s} \
144 crti.o%s %(startfile_arch) \
148 #define ENDFILE_SPEC \
149 "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \
152 #undef LINK_ARCH32_SPEC_BASE
153 #define LINK_ARCH32_SPEC_BASE \
157 %{!YP,*:%{p|pg:-Y P,%R/usr/ccs/lib/libp:%R/usr/lib/libp:%R/usr/ccs/lib:%R/lib:%R/usr/lib} \
158 %{!p:%{!pg:-Y P,%R/usr/ccs/lib:%R/lib:%R/usr/lib}}}"
160 #undef LINK_ARCH32_SPEC
161 #define LINK_ARCH32_SPEC LINK_ARCH32_SPEC_BASE
163 #undef LINK_ARCH_SPEC
164 #define LINK_ARCH_SPEC LINK_ARCH32_SPEC
166 /* C++11 programs need -lrt for nanosleep. */
167 #define TIME_LIBRARY "rt"
170 /* With Sun ld, -rdynamic is a no-op. */
171 #define RDYNAMIC_SPEC ""
173 /* GNU ld needs --export-dynamic to implement -rdynamic. */
174 #define RDYNAMIC_SPEC "--export-dynamic"
178 /* With Sun ld, use mapfile to enforce direct binding to libgcc_s unwinder. */
179 #define LINK_LIBGCC_MAPFILE_SPEC \
180 "%{shared|shared-libgcc:-M %slibgcc-unwind.map}"
182 /* GNU ld doesn't support direct binding. */
183 #define LINK_LIBGCC_MAPFILE_SPEC ""
189 %{!shared:%{!static:%{rdynamic: " RDYNAMIC_SPEC "}}} \
190 %{static:-dn -Bstatic} \
191 %{shared:-G -dy %{!mimpure-text:-z text}} " LINK_LIBGCC_MAPFILE_SPEC " \
192 %{symbolic:-Bsymbolic -G -dy -z text} \
196 /* Use --as-needed/-z ignore -lgcc_s for eh support. */
197 #ifdef HAVE_LD_AS_NEEDED
198 #define USE_LD_AS_NEEDED 1
202 /* Solaris 11 build 135+ implements dl_iterate_phdr. GNU ld needs
203 --eh-frame-hdr to create the required .eh_frame_hdr sections. */
204 #if defined(HAVE_LD_EH_FRAME_HDR) && defined(TARGET_DL_ITERATE_PHDR)
205 #define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
206 #endif /* HAVE_LD_EH_FRAME && TARGET_DL_ITERATE_PHDR */
209 /* collect2.c can only parse GNU nm -n output. Solaris nm needs -png to
210 produce the same format. */
211 #define NM_FLAGS "-png"
213 /* The system headers under Solaris 2 are C++-aware since 2.0. */
214 #define NO_IMPLICIT_EXTERN_C
216 #define STDC_0_IN_SYSTEM_HEADERS 1
218 /* Support Solaris-specific format checking for cmn_err. */
219 #define TARGET_N_FORMAT_TYPES 1
220 #define TARGET_FORMAT_TYPES solaris_format_types
222 /* #pragma init and #pragma fini are implemented on top of init and
224 #define SOLARIS_ATTRIBUTE_TABLE \
225 { "init", 0, 0, true, false, false, NULL, false }, \
226 { "fini", 0, 0, true, false, false, NULL, false }
228 /* Solaris-specific #pragmas are implemented on top of attributes. Hook in
229 the bits from config/sol2.c. */
230 #define SUBTARGET_INSERT_ATTRIBUTES solaris_insert_attributes
231 #define SUBTARGET_ATTRIBUTE_TABLE SOLARIS_ATTRIBUTE_TABLE
233 /* Allow macro expansion in #pragma pack. */
234 #define HANDLE_PRAGMA_PACK_WITH_EXPANSION
236 #define TARGET_CXX_DECL_MANGLING_CONTEXT solaris_cxx_decl_mangling_context
238 /* Solaris/x86 as and gas support unquoted section names. */
239 #define SECTION_NAME_FORMAT "%s"
241 /* This is how to declare the size of a function. For Solaris, we output
242 any .init or .fini entries here. */
243 #undef ASM_DECLARE_FUNCTION_SIZE
244 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL) \
247 if (!flag_inhibit_size_directive) \
248 ASM_OUTPUT_MEASURED_SIZE (FILE, FNAME); \
249 solaris_output_init_fini (FILE, DECL); \
253 /* Solaris as has a bug: a .common directive in .tbss or .tdata section
254 behaves as .tls_common rather than normal non-TLS .common. */
255 #undef ASM_OUTPUT_ALIGNED_COMMON
256 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
261 && ((in_section->common.flags & SECTION_TLS) == SECTION_TLS)) \
262 switch_to_section (bss_section); \
263 fprintf ((FILE), "%s", COMMON_ASM_OP); \
264 assemble_name ((FILE), (NAME)); \
265 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
266 (SIZE), (ALIGN) / BITS_PER_UNIT); \
271 #undef TARGET_ASM_ASSEMBLE_VISIBILITY
272 #define TARGET_ASM_ASSEMBLE_VISIBILITY solaris_assemble_visibility
274 #define AS_NEEDS_DASH_FOR_PIPED_INPUT
276 /* The Solaris assembler cannot grok .stabd directives. */
277 #undef NO_DBX_BNSYM_ENSYM
278 #define NO_DBX_BNSYM_ENSYM 1
282 /* The Solaris linker doesn't understand constructor priorities. */
283 #undef SUPPORTS_INIT_PRIORITY
284 #define SUPPORTS_INIT_PRIORITY 0
287 /* Solaris has an implementation of __enable_execute_stack. */
288 #define HAVE_ENABLE_EXECUTE_STACK
290 /* Static stack checking is supported by means of probes. */
291 #define STACK_CHECK_STATIC_BUILTIN 1
293 #define TARGET_POSIX_IO
295 #undef TARGET_LIBC_HAS_FUNCTION
296 #define TARGET_LIBC_HAS_FUNCTION no_c99_libc_has_function
298 extern GTY(()) tree solaris_pending_aligns
;
299 extern GTY(()) tree solaris_pending_inits
;
300 extern GTY(()) tree solaris_pending_finis
;