* ropeimpl.h: Check __STL_PTHREADS instead of _PTHREADS.
[official-gcc.git] / gcc / config / netbsd.h
blob860e10107e5362b458e25b30a1c1a9333d0979dd
1 /* NETBSD_NATIVE is defined when gcc is integrated into the NetBSD
2 source tree so it can be configured appropriately without using
3 the GNU configure/build mechanism. */
5 #ifdef NETBSD_NATIVE
7 /* Look for the include files in the system-defined places. */
9 #undef GPLUSPLUS_INCLUDE_DIR
10 #define GPLUSPLUS_INCLUDE_DIR "/usr/include/g++"
12 #undef GCC_INCLUDE_DIR
13 #define GCC_INCLUDE_DIR "/usr/include"
15 #undef INCLUDE_DEFAULTS
16 #define INCLUDE_DEFAULTS \
17 { \
18 { GPLUSPLUS_INCLUDE_DIR, 1, 1 }, \
19 { GCC_INCLUDE_DIR, 0, 0 }, \
20 { 0, 0, 0 } \
23 /* Under NetBSD, the normal location of the compiler back ends is the
24 /usr/libexec directory. */
26 #undef STANDARD_EXEC_PREFIX
27 #define STANDARD_EXEC_PREFIX "/usr/libexec/"
29 /* Under NetBSD, the normal location of the various *crt*.o files is the
30 /usr/lib directory. */
32 #undef STANDARD_STARTFILE_PREFIX
33 #define STANDARD_STARTFILE_PREFIX "/usr/lib/"
35 #endif
38 /* Provide a CPP_SPEC appropriate for NetBSD. Current we just deal with
39 the GCC option `-posix'. */
41 #undef CPP_SPEC
42 #define CPP_SPEC "%{posix:-D_POSIX_SOURCE}"
44 /* Provide an ASM_SPEC appropriate for NetBSD. Currently we only deal
45 with the options for generating PIC code. */
47 #undef ASM_SPEC
48 #define ASM_SPEC " %| %{fpic:-k} %{fPIC:-k -K}"
50 /* Provide a LIB_SPEC appropriate for NetBSD. Just select the appropriate
51 libc, depending on whether we're doing profiling. */
53 #undef LIB_SPEC
54 #define LIB_SPEC "%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
56 /* Provide a LINK_SPEC appropriate for NetBSD. Here we provide support
57 for the special GCC options -static, -assert, and -nostdlib. */
59 #undef LINK_SPEC
60 #define LINK_SPEC \
61 "%{!nostdlib:%{!r*:%{!e*:-e start}}} -dc -dp %{R*} %{static:-Bstatic} %{assert*}"
63 /* This defines which switch letters take arguments. */
64 #undef SWITCH_TAKES_ARG
65 #define SWITCH_TAKES_ARG(CHAR) \
66 (DEFAULT_SWITCH_TAKES_ARG(CHAR) \
67 || (CHAR) == 'R')
69 /* We have atexit(3). */
71 #define HAVE_ATEXIT
73 /* Implicit library calls should use memcpy, not bcopy, etc. */
75 #define TARGET_MEM_FUNCTIONS
77 /* Handle #pragma weak and #pragma pack. */
79 #define HANDLE_SYSV_PRAGMA
82 * Some imports from svr4.h in support of shared libraries.
83 * Currently, we need the DECLARE_OBJECT_SIZE stuff.
86 /* Define the strings used for the .type, .size, and .set directives.
87 These strings generally do not vary from one system running netbsd
88 to another, but if a given system needs to use different pseudo-op
89 names for these, they may be overridden in the file which includes
90 this one. */
92 #undef TYPE_ASM_OP
93 #undef SIZE_ASM_OP
94 #undef SET_ASM_OP
95 #define TYPE_ASM_OP ".type"
96 #define SIZE_ASM_OP ".size"
97 #define SET_ASM_OP ".set"
99 /* This is how we tell the assembler that a symbol is weak. */
101 #undef ASM_WEAKEN_LABEL
102 #define ASM_WEAKEN_LABEL(FILE,NAME) \
103 do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \
104 fputc ('\n', FILE); } while (0)
106 /* The following macro defines the format used to output the second
107 operand of the .type assembler directive. Different svr4 assemblers
108 expect various different forms for this operand. The one given here
109 is just a default. You may need to override it in your machine-
110 specific tm.h file (depending upon the particulars of your assembler). */
112 #undef TYPE_OPERAND_FMT
113 #define TYPE_OPERAND_FMT "@%s"
115 /* Write the extra assembler code needed to declare a function's result.
116 Most svr4 assemblers don't require any special declaration of the
117 result value, but there are exceptions. */
119 #ifndef ASM_DECLARE_RESULT
120 #define ASM_DECLARE_RESULT(FILE, RESULT)
121 #endif
123 /* These macros generate the special .type and .size directives which
124 are used to set the corresponding fields of the linker symbol table
125 entries in an ELF object file under SVR4. These macros also output
126 the starting labels for the relevant functions/objects. */
128 /* Write the extra assembler code needed to declare a function properly.
129 Some svr4 assemblers need to also have something extra said about the
130 function's return value. We allow for that here. */
132 #undef ASM_DECLARE_FUNCTION_NAME
133 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \
134 do { \
135 fprintf (FILE, "\t%s\t ", TYPE_ASM_OP); \
136 assemble_name (FILE, NAME); \
137 putc (',', FILE); \
138 fprintf (FILE, TYPE_OPERAND_FMT, "function"); \
139 putc ('\n', FILE); \
140 ASM_DECLARE_RESULT (FILE, DECL_RESULT (DECL)); \
141 ASM_OUTPUT_LABEL(FILE, NAME); \
142 } while (0)
144 /* Write the extra assembler code needed to declare an object properly. */
146 #undef ASM_DECLARE_OBJECT_NAME
147 #define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL) \
148 do { \
149 fprintf (FILE, "\t%s\t ", TYPE_ASM_OP); \
150 assemble_name (FILE, NAME); \
151 putc (',', FILE); \
152 fprintf (FILE, TYPE_OPERAND_FMT, "object"); \
153 putc ('\n', FILE); \
154 size_directive_output = 0; \
155 if (!flag_inhibit_size_directive && DECL_SIZE (DECL)) \
157 size_directive_output = 1; \
158 fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \
159 assemble_name (FILE, NAME); \
160 fprintf (FILE, ",%d\n", int_size_in_bytes (TREE_TYPE (DECL))); \
162 ASM_OUTPUT_LABEL(FILE, NAME); \
163 } while (0)
165 /* Output the size directive for a decl in rest_of_decl_compilation
166 in the case where we did not do so before the initializer.
167 Once we find the error_mark_node, we know that the value of
168 size_directive_output was set
169 by ASM_DECLARE_OBJECT_NAME when it was run for the same decl. */
171 #undef ASM_FINISH_DECLARE_OBJECT
172 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP_LEVEL, AT_END) \
173 do { \
174 char *name = XSTR (XEXP (DECL_RTL (DECL), 0), 0); \
175 if (!flag_inhibit_size_directive && DECL_SIZE (DECL) \
176 && ! AT_END && TOP_LEVEL \
177 && DECL_INITIAL (DECL) == error_mark_node \
178 && !size_directive_output) \
180 size_directive_output = 1; \
181 fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \
182 assemble_name (FILE, name); \
183 fprintf (FILE, ",%d\n", int_size_in_bytes (TREE_TYPE (DECL))); \
185 } while (0)
187 /* This is how to declare the size of a function. */
189 #undef ASM_DECLARE_FUNCTION_SIZE
190 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL) \
191 do { \
192 if (!flag_inhibit_size_directive) \
194 char label[256]; \
195 static int labelno; \
196 labelno++; \
197 ASM_GENERATE_INTERNAL_LABEL (label, "Lfe", labelno); \
198 ASM_OUTPUT_INTERNAL_LABEL (FILE, "Lfe", labelno); \
199 fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \
200 assemble_name (FILE, (FNAME)); \
201 fprintf (FILE, ","); \
202 assemble_name (FILE, label); \
203 fprintf (FILE, "-"); \
204 assemble_name (FILE, (FNAME)); \
205 putc ('\n', FILE); \
207 } while (0)