svn merge -r215707:216846 svn+ssh://gcc.gnu.org/svn/gcc/trunk
[official-gcc.git] / gcc / config / pa / pa-hpux11.h
blob42e5f9f4481ff0bab3f17f48e64c848c1de7098e
1 /* Definitions of target machine for GNU compiler, for HP PA-RISC
2 Copyright (C) 1998-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* GCC always defines __STDC__. HP C++ compilers don't define it. This
21 causes trouble when sys/stdsyms.h is included. As a work around,
22 we define __STDC_EXT__. A similar situation exists with respect to
23 the definition of __cplusplus. We define _INCLUDE_LONGLONG
24 to prevent nlist.h from defining __STDC_32_MODE__ (no longlong
25 support). We define __STDCPP__ to get certain system headers
26 (notably assert.h) to assume standard preprocessor behavior in C++. */
27 #undef TARGET_OS_CPP_BUILTINS
28 #define TARGET_OS_CPP_BUILTINS() \
29 do \
30 { \
31 builtin_assert ("system=hpux"); \
32 builtin_assert ("system=unix"); \
33 builtin_define ("__hp9000s800"); \
34 builtin_define ("__hp9000s800__"); \
35 builtin_define ("__hpux"); \
36 builtin_define ("__hpux__"); \
37 builtin_define ("__unix"); \
38 builtin_define ("__unix__"); \
39 builtin_define ("__STDC_EXT__"); \
40 if (c_dialect_cxx ()) \
41 { \
42 builtin_define ("_HPUX_SOURCE"); \
43 builtin_define ("_REENTRANT"); \
44 builtin_define ("_INCLUDE_LONGLONG"); \
45 builtin_define ("__STDCPP__"); \
46 } \
47 else \
48 { \
49 if (!flag_iso) \
50 { \
51 builtin_define ("_HPUX_SOURCE"); \
52 builtin_define ("_REENTRANT"); \
53 if (preprocessing_trad_p ()) \
54 { \
55 builtin_define ("hp9000s800"); \
56 builtin_define ("hppa"); \
57 builtin_define ("hpux"); \
58 builtin_define ("unix"); \
59 builtin_define ("__CLASSIC_C__"); \
60 builtin_define ("_PWB"); \
61 builtin_define ("PWB"); \
62 } \
63 } \
64 } \
65 if (!TARGET_64BIT) \
66 builtin_define ("_ILP32"); \
67 if (flag_pa_unix >= 1995 && !flag_iso) \
68 { \
69 builtin_define ("_XOPEN_UNIX"); \
70 builtin_define ("_XOPEN_SOURCE_EXTENDED"); \
71 } \
72 if (TARGET_HPUX_11_11) \
73 { \
74 if (flag_pa_unix >= 1998) \
75 { \
76 if (flag_isoc94 || flag_isoc99 || c_dialect_cxx() \
77 || !flag_iso) \
78 builtin_define ("_INCLUDE__STDC_A1_SOURCE"); \
79 if (!flag_iso) \
80 builtin_define ("_INCLUDE_XOPEN_SOURCE_500"); \
81 } \
82 else if (flag_isoc94 || flag_isoc99 || c_dialect_cxx ()) \
83 warning (0, "-munix=98 option required for C89 " \
84 "Amendment 1 features.\n"); \
85 } \
86 if (TARGET_SIO) \
87 builtin_define ("_SIO"); \
88 else \
89 { \
90 builtin_define ("__hp9000s700"); \
91 builtin_define ("__hp9000s700__"); \
92 builtin_define ("_WSIO"); \
93 } \
94 } \
95 while (0)
97 #undef CPP_SPEC
98 #define CPP_SPEC \
99 "%{mt|pthread:-D_REENTRANT -D_THREAD_SAFE -D_POSIX_C_SOURCE=199506L}"
100 /* aCC defines also -DRWSTD_MULTI_THREAD, -DRW_MULTI_THREAD. These
101 affect only aCC's C++ library (Rogue Wave-derived) which we do not
102 use, and they violate the user's name space. */
104 /* We can debug dynamically linked executables on hpux11; we also
105 want dereferencing of a NULL pointer to cause a SEGV. */
106 #undef LINK_SPEC
107 #define LINK_SPEC \
108 "%{!shared:%{p:-L/lib/libp -L/usr/lib/libp %{!static:\
109 %nwarning: consider linking with '-static' as system libraries with\n\
110 %n profiling support are only provided in archive format}}}\
111 %{!shared:%{pg:-L/lib/libp -L/usr/lib/libp %{!static:\
112 %nwarning: consider linking with '-static' as system libraries with\n\
113 %n profiling support are only provided in archive format}}}\
114 %{!shared:%{!static:%{rdynamic:-E}}}\
115 -z %{mlinker-opt:-O} %{!shared:-u main -u __gcc_plt_call}\
116 %{static:-a archive} %{shared:-b}"
118 /* HP-UX 11 has posix threads. HP's shared libc contains pthread stubs
119 so that non-threaded applications can be linked with a thread-safe
120 libc without a subsequent loss of performance. For more details,
121 see <http://docs.hp.com/en/1896/pthreads.html>. */
122 #undef LIB_SPEC
123 #define LIB_SPEC \
124 "%{!shared:\
125 %{fopenacc|fopenmp|ftree-parallelize-loops=*:\
126 %{static:-a archive_shared} -lrt %{static:-a archive}}\
127 %{mt|pthread:-lpthread} -lc\
128 %{static:%{!nolibdld:-a archive_shared -ldld -a archive -lc}\
129 %{!mt:%{!pthread:-a shared -lc -a archive}}}}\
130 %{shared:%{mt|pthread:-lpthread}}"
132 /* The libgcc_stub.a library needs to come last. */
133 #undef LINK_GCC_C_SEQUENCE_SPEC
134 #define LINK_GCC_C_SEQUENCE_SPEC \
135 "%G %L %G %{!nostdlib:%{!nodefaultlibs:%{!shared:-lgcc_stub}}}"
137 #undef STARTFILE_SPEC
138 #define STARTFILE_SPEC \
139 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}} \
140 %{!munix=93:unix95%O%s}}"
142 /* Under hpux11, the normal location of the `ld' and `as' programs is the
143 /usr/ccs/bin directory. */
145 #ifndef CROSS_DIRECTORY_STRUCTURE
146 #undef MD_EXEC_PREFIX
147 #define MD_EXEC_PREFIX "/usr/ccs/bin/"
148 #endif
150 /* Under hpux11 the normal location of the various *crt*.o files is
151 the /usr/ccs/lib directory. However, the profiling files are in
152 /opt/langtools/lib. */
154 #ifndef CROSS_DIRECTORY_STRUCTURE
155 #undef MD_STARTFILE_PREFIX
156 #define MD_STARTFILE_PREFIX "/usr/ccs/lib/"
157 #define MD_STARTFILE_PREFIX_1 "/opt/langtools/lib/"
158 #endif
160 /* hpux11 has the new HP assembler. It's still lousy, but it's a whole lot
161 better than the assembler shipped with older versions of hpux. */
162 #undef NEW_HP_ASSEMBLER
163 #define NEW_HP_ASSEMBLER 1
165 /* Make GCC agree with types.h. */
166 #undef SIZE_TYPE
167 #undef PTRDIFF_TYPE
169 #define SIZE_TYPE "long unsigned int"
170 #define PTRDIFF_TYPE "long int"
172 /* HP-UX 11.0 and above provides initialization and finalization function
173 support from linker command line. We don't need to invoke __main to run
174 constructors. We also don't need chatr to determine the dependencies of
175 dynamically linked executables and shared libraries. */
176 #undef LDD_SUFFIX
177 #undef PARSE_LDD_OUTPUT
178 #undef HAS_INIT_SECTION
179 #define HAS_INIT_SECTION 1
180 #undef LD_INIT_SWITCH
181 #define LD_INIT_SWITCH "+init"
182 #undef LD_FINI_SWITCH
183 #define LD_FINI_SWITCH "+fini"
185 /* The HP-UX 11.X SOM linker (ld32) can successfully link shared libraries
186 with secondary definition (weak) symbols. */
187 #undef TARGET_SOM_SDEF
188 #define TARGET_SOM_SDEF 1
190 #undef TARGET_HPUX_11
191 #define TARGET_HPUX_11 1