OSDN Git Service

PR target/55171
[pf3gnuchains/gcc-fork.git] / gcc / config / darwin.h
1 /* Target definitions for Darwin (Mac OS X) systems.
2    Copyright (C) 1989, 1990, 1991, 1992, 1993, 2000, 2001, 2002, 2003, 2004,
3    2005, 2006, 2007, 2008, 2009, 2010, 2011
4    Free Software Foundation, Inc.
5    Contributed by Apple Computer Inc.
6
7 This file is part of GCC.
8
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.
13
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.
18
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.
22
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/>.  */
27
28 #ifndef CONFIG_DARWIN_H
29 #define CONFIG_DARWIN_H
30
31 /* The definitions in this file are common to all processor types
32    running Darwin, which is the kernel for Mac OS X.  Darwin is
33    basically a BSD user layer laid over a Mach kernel, then evolved
34    for many years (at NeXT) in parallel with other Unix systems.  So
35    while the runtime is a somewhat idiosyncratic Mach-based thing,
36    other definitions look like they would for a BSD variant.  */
37
38 /* Although NeXT ran on many different architectures, as of Jan 2001
39    the only supported Darwin targets are PowerPC and x86.  */
40
41 /* One of Darwin's NeXT legacies is the Mach-O format, which is partly
42    like a.out and partly like COFF, with additional features like
43    multi-architecture binary support.  */
44
45 #define DARWIN_X86 0
46 #define DARWIN_PPC 0
47
48 /* Don't assume anything about the header files.  */
49 #define NO_IMPLICIT_EXTERN_C
50
51 /* Suppress g++ attempt to link in the math library automatically. */
52 #define MATH_LIBRARY ""
53
54 /* We have atexit.  */
55
56 #define HAVE_ATEXIT
57
58 /* Define an empty body for the function do_global_dtors() in libgcc2.c.  */
59
60 #define DO_GLOBAL_DTORS_BODY
61
62 /* The string value for __SIZE_TYPE__.  */
63
64 #ifndef SIZE_TYPE
65 #define SIZE_TYPE "long unsigned int"
66 #endif
67
68 /* Type used for ptrdiff_t, as a string used in a declaration.  */
69
70 #undef  PTRDIFF_TYPE
71 #define PTRDIFF_TYPE "int"
72
73 /* wchar_t is int.  */
74
75 #undef  WCHAR_TYPE
76 #define WCHAR_TYPE "int"
77 #undef  WCHAR_TYPE_SIZE
78 #define WCHAR_TYPE_SIZE 32
79
80 #define INT8_TYPE "signed char"
81 #define INT16_TYPE "short int"
82 #define INT32_TYPE "int"
83 #define INT64_TYPE "long long int"
84 #define UINT8_TYPE "unsigned char"
85 #define UINT16_TYPE "short unsigned int"
86 #define UINT32_TYPE "unsigned int"
87 #define UINT64_TYPE "long long unsigned int"
88
89 #define INT_LEAST8_TYPE "signed char"
90 #define INT_LEAST16_TYPE "short int"
91 #define INT_LEAST32_TYPE "int"
92 #define INT_LEAST64_TYPE "long long int"
93 #define UINT_LEAST8_TYPE "unsigned char"
94 #define UINT_LEAST16_TYPE "short unsigned int"
95 #define UINT_LEAST32_TYPE "unsigned int"
96 #define UINT_LEAST64_TYPE "long long unsigned int"
97
98 #define INT_FAST8_TYPE "signed char"
99 #define INT_FAST16_TYPE "short int"
100 #define INT_FAST32_TYPE "int"
101 #define INT_FAST64_TYPE "long long int"
102 #define UINT_FAST8_TYPE "unsigned char"
103 #define UINT_FAST16_TYPE "short unsigned int"
104 #define UINT_FAST32_TYPE "unsigned int"
105 #define UINT_FAST64_TYPE "long long unsigned int"
106
107 #define INTPTR_TYPE "long int"
108 #define UINTPTR_TYPE "long unsigned int"
109
110 #define SIG_ATOMIC_TYPE "int"
111
112 /* Default to using the NeXT-style runtime, since that's what is
113    pre-installed on Darwin systems.  */
114
115 #define NEXT_OBJC_RUNTIME 1
116
117 /* Don't default to pcc-struct-return, because gcc is the only compiler, and
118    we want to retain compatibility with older gcc versions.  */
119
120 #undef  DEFAULT_PCC_STRUCT_RETURN
121 #define DEFAULT_PCC_STRUCT_RETURN 0
122
123 /* True if pragma ms_struct is in effect.  */
124 extern GTY(()) int darwin_ms_struct;
125
126 #define DRIVER_SELF_SPECS                                       \
127   "%{gfull:-g -fno-eliminate-unused-debug-symbols} %<gfull",    \
128   "%{gused:-g -feliminate-unused-debug-symbols} %<gused",       \
129   "%{fapple-kext|mkernel:-static}",                             \
130   "%{shared:-Zdynamiclib} %<shared"
131
132 #define DARWIN_CC1_SPEC                                                 \
133   "%{findirect-virtual-calls: -fapple-kext} %<findirect-virtual-calls " \
134   "%{fterminated-vtables: -fapple-kext} %<fterminated-vtables "         \
135   "%<filelist* %<framework*"
136
137 #define SUBSUBTARGET_OVERRIDE_OPTIONS                                   \
138   do {                                                                  \
139     darwin_override_options ();                                         \
140   } while (0)
141
142 #define SUBTARGET_C_COMMON_OVERRIDE_OPTIONS do {                        \
143     if (!global_options_set.x_flag_objc_sjlj_exceptions)                \
144       global_options.x_flag_objc_sjlj_exceptions =                      \
145                                 flag_next_runtime && !TARGET_64BIT;     \
146     if (flag_mkernel || flag_apple_kext)                                \
147       {                                                                 \
148         if (flag_use_cxa_atexit == 2)                                   \
149           flag_use_cxa_atexit = 0;                                      \
150         /* kexts should always be built without the coalesced sections  \
151            because the kernel loader doesn't grok such sections.  */    \
152         flag_weak = 0;                                                  \
153         /* No RTTI in kexts.  */                                        \
154         flag_rtti = 0;                                                  \
155       }                                                                 \
156   } while (0)
157
158 /* Machine dependent cpp options.  Don't add more options here, add
159    them to darwin_cpp_builtins in darwin-c.c.  */
160
161 #undef  CPP_SPEC
162 #define CPP_SPEC "%{static:%{!dynamic:-D__STATIC__}}%{!static:-D__DYNAMIC__}" \
163         " %{pthread:-D_REENTRANT}"
164
165 /* This is mostly a clone of the standard LINK_COMMAND_SPEC, plus
166    precomp, libtool, and fat build additions.
167
168    In general, random Darwin linker flags should go into LINK_SPEC
169    instead of LINK_COMMAND_SPEC.  The command spec is better for
170    specifying the handling of options understood by generic Unix
171    linkers, and for positional arguments like libraries.  */
172
173 #define LINK_COMMAND_SPEC_A \
174    "%{!fdump=*:%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
175     %(linker)" \
176     LINK_PLUGIN_SPEC \
177     "%{flto*:%<fcompare-debug*} \
178     %{flto*} \
179     %l %X %{s} %{t} %{Z} %{u*} \
180     %{e*} %{r} \
181     %{o*}%{!o:-o a.out} \
182     %{!nostdlib:%{!nostartfiles:%S}} \
183     %{L*} %(link_libgcc) %o %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} \
184     %{fopenmp|ftree-parallelize-loops=*: \
185       %{static|static-libgcc|static-libstdc++|static-libgfortran: libgomp.a%s; : -lgomp } } \
186     %{fgnu-tm: \
187       %{static|static-libgcc|static-libstdc++|static-libgfortran: libitm.a%s; : -litm } } \
188     %{!nostdlib:%{!nodefaultlibs:\
189       %(link_ssp) %(link_gcc_c_sequence)\
190     }}\
191     %{!nostdlib:%{!nostartfiles:%E}} %{T*} %{F*} }}}}}}}"
192
193 #define DSYMUTIL "\ndsymutil"
194
195 #define DSYMUTIL_SPEC \
196    "%{!fdump=*:%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
197     %{v} \
198     %{gdwarf-2:%{!gstabs*:%{!g0: -idsym}}}\
199     %{.c|.cc|.C|.cpp|.cp|.c++|.cxx|.CPP|.m|.mm: \
200     %{gdwarf-2:%{!gstabs*:%{!g0: -dsym}}}}}}}}}}}"
201
202 #define LINK_COMMAND_SPEC LINK_COMMAND_SPEC_A DSYMUTIL_SPEC
203
204 /* Tell collect2 to run dsymutil for us as necessary.  */
205 #define COLLECT_RUN_DSYMUTIL 1
206
207 /* We only want one instance of %G, since libSystem (Darwin's -lc) does not depend
208    on libgcc.  */
209 #undef  LINK_GCC_C_SEQUENCE_SPEC
210 #define LINK_GCC_C_SEQUENCE_SPEC "%G %L"
211
212 #ifdef TARGET_SYSTEM_ROOT
213 #define LINK_SYSROOT_SPEC \
214   "%{isysroot*:-syslibroot %*;:-syslibroot " TARGET_SYSTEM_ROOT "}"
215 #else
216 #define LINK_SYSROOT_SPEC "%{isysroot*:-syslibroot %*}"
217 #endif
218
219 #define PIE_SPEC "%{fpie|pie|fPIE:}"
220
221 /* Please keep the random linker options in alphabetical order (modulo
222    'Z' and 'no' prefixes). Note that options taking arguments may appear
223    multiple times on a command line with different arguments each time,
224    so put a * after their names so all of them get passed.  */
225 #define LINK_SPEC  \
226   "%{static}%{!static:-dynamic} \
227    %:remove-outfile(-ldl) \
228    %:remove-outfile(-lm) \
229    %:remove-outfile(-lpthread) \
230    %{fgnu-runtime: %{static|static-libgcc: \
231                      %:replace-outfile(-lobjc libobjc-gnu.a%s); \
232                     :%:replace-outfile(-lobjc -lobjc-gnu ) } }\
233    %{static|static-libgcc|static-libgfortran:%:replace-outfile(-lgfortran libgfortran.a%s)}\
234    %{static|static-libgcc|static-libstdc++|static-libgfortran:%:replace-outfile(-lgomp libgomp.a%s)}\
235    %{static|static-libgcc|static-libstdc++:%:replace-outfile(-lstdc++ libstdc++.a%s)}\
236    %{!Zdynamiclib: \
237      %{Zforce_cpusubtype_ALL:-arch %(darwin_arch) -force_cpusubtype_ALL} \
238      %{!Zforce_cpusubtype_ALL:-arch %(darwin_subarch)} \
239      %{Zbundle:-bundle} \
240      %{Zbundle_loader*:-bundle_loader %*} \
241      %{client_name*} \
242      %{compatibility_version*:%e-compatibility_version only allowed with -dynamiclib\
243 } \
244      %{current_version*:%e-current_version only allowed with -dynamiclib} \
245      %{Zforce_flat_namespace:-force_flat_namespace} \
246      %{Zinstall_name*:%e-install_name only allowed with -dynamiclib} \
247      %{keep_private_externs} \
248      %{private_bundle} \
249     } \
250    %{Zdynamiclib: -dylib \
251      %{Zbundle:%e-bundle not allowed with -dynamiclib} \
252      %{Zbundle_loader*:%e-bundle_loader not allowed with -dynamiclib} \
253      %{client_name*:%e-client_name not allowed with -dynamiclib} \
254      %{compatibility_version*:-dylib_compatibility_version %*} \
255      %{current_version*:-dylib_current_version %*} \
256      %{Zforce_cpusubtype_ALL:-arch %(darwin_arch)} \
257      %{!Zforce_cpusubtype_ALL: -arch %(darwin_subarch)} \
258      %{Zforce_flat_namespace:%e-force_flat_namespace not allowed with -dynamiclib} \
259      %{Zinstall_name*:-dylib_install_name %*} \
260      %{keep_private_externs:%e-keep_private_externs not allowed with -dynamiclib} \
261      %{private_bundle:%e-private_bundle not allowed with -dynamiclib} \
262     } \
263    %{Zall_load:-all_load} \
264    %{Zallowable_client*:-allowable_client %*} \
265    %{Zbind_at_load:-bind_at_load} \
266    %{Zarch_errors_fatal:-arch_errors_fatal} \
267    %{Zdead_strip:-dead_strip} \
268    %{Zno_dead_strip_inits_and_terms:-no_dead_strip_inits_and_terms} \
269    %{Zdylib_file*:-dylib_file %*} \
270    %{Zdynamic:-dynamic}\
271    %{Zexported_symbols_list*:-exported_symbols_list %*} \
272    %{Zflat_namespace:-flat_namespace} \
273    %{headerpad_max_install_names} \
274    %{Zimage_base*:-image_base %*} \
275    %{Zinit*:-init %*} \
276    %{!mmacosx-version-min=*:-macosx_version_min %(darwin_minversion)} \
277    %{mmacosx-version-min=*:-macosx_version_min %*} \
278    %{nomultidefs} \
279    %{Zmulti_module:-multi_module} %{Zsingle_module:-single_module} \
280    %{Zmultiply_defined*:-multiply_defined %*} \
281    %{!Zmultiply_defined*:%{shared-libgcc: \
282      %:version-compare(< 10.5 mmacosx-version-min= -multiply_defined) \
283      %:version-compare(< 10.5 mmacosx-version-min= suppress)}} \
284    %{Zmultiplydefinedunused*:-multiply_defined_unused %*} \
285    " PIE_SPEC " \
286    %{prebind} %{noprebind} %{nofixprebinding} %{prebind_all_twolevel_modules} \
287    %{read_only_relocs} \
288    %{sectcreate*} %{sectorder*} %{seg1addr*} %{segprot*} \
289    %{Zsegaddr*:-segaddr %*} \
290    %{Zsegs_read_only_addr*:-segs_read_only_addr %*} \
291    %{Zsegs_read_write_addr*:-segs_read_write_addr %*} \
292    %{Zseg_addr_table*: -seg_addr_table %*} \
293    %{Zfn_seg_addr_table_filename*:-seg_addr_table_filename %*} \
294    %{sub_library*} %{sub_umbrella*} \
295    " LINK_SYSROOT_SPEC " \
296    %{twolevel_namespace} %{twolevel_namespace_hints} \
297    %{Zumbrella*: -umbrella %*} \
298    %{undefined*} \
299    %{Zunexported_symbols_list*:-unexported_symbols_list %*} \
300    %{Zweak_reference_mismatches*:-weak_reference_mismatches %*} \
301    %{!Zweak_reference_mismatches*:-weak_reference_mismatches non-weak} \
302    %{X} \
303    %{y*} \
304    %{w} \
305    %{pagezero_size*} %{segs_read_*} %{seglinkedit} %{noseglinkedit}  \
306    %{sectalign*} %{sectobjectsymbols*} %{segcreate*} %{whyload} \
307    %{whatsloaded} %{dylinker_install_name*} \
308    %{dylinker} %{Mach} "
309
310
311 /* Machine dependent libraries.  */
312
313 #define LIB_SPEC "%{!static:-lSystem}"
314
315 /* Support -mmacosx-version-min by supplying different (stub) libgcc_s.dylib
316    libraries to link against, and by not linking against libgcc_s on
317    earlier-than-10.3.9.
318
319    Note that by default, -lgcc_eh is not linked against!  This is
320    because in a future version of Darwin the EH frame information may
321    be in a new format, or the fallback routine might be changed; if
322    you want to explicitly link against the static version of those
323    routines, because you know you don't need to unwind through system
324    libraries, you need to explicitly say -static-libgcc.
325
326    If it is linked against, it has to be before -lgcc, because it may
327    need symbols from -lgcc.  */
328 #undef REAL_LIBGCC_SPEC
329 #define REAL_LIBGCC_SPEC                                                   \
330    "%{static-libgcc|static: -lgcc_eh -lgcc;                                \
331       shared-libgcc|fexceptions|fgnu-runtime:                              \
332        %:version-compare(!> 10.5 mmacosx-version-min= -lgcc_s.10.4)        \
333        %:version-compare(>< 10.5 10.6 mmacosx-version-min= -lgcc_s.10.5)   \
334        %:version-compare(!> 10.5 mmacosx-version-min= -lgcc_ext.10.4)      \
335        %:version-compare(>= 10.5 mmacosx-version-min= -lgcc_ext.10.5)      \
336        -lgcc ;                                                             \
337       :%:version-compare(>< 10.3.9 10.5 mmacosx-version-min= -lgcc_s.10.4) \
338        %:version-compare(>< 10.5 10.6 mmacosx-version-min= -lgcc_s.10.5)   \
339        %:version-compare(!> 10.5 mmacosx-version-min= -lgcc_ext.10.4)      \
340        %:version-compare(>= 10.5 mmacosx-version-min= -lgcc_ext.10.5)      \
341        -lgcc }"
342
343 /* We specify crt0.o as -lcrt0.o so that ld will search the library path.
344
345    crt3.o provides __cxa_atexit on systems that don't have it.  Since
346    it's only used with C++, which requires passing -shared-libgcc, key
347    off that to avoid unnecessarily adding a destructor to every
348    powerpc program built.  */
349
350 #undef  STARTFILE_SPEC
351 #define STARTFILE_SPEC                                                      \
352   "%{Zdynamiclib: %(darwin_dylib1) %{fgnu-tm: -lcrttms.o}}                  \
353    %{!Zdynamiclib:%{Zbundle:%{!static:                                      \
354         %:version-compare(< 10.6 mmacosx-version-min= -lbundle1.o)          \
355         %{fgnu-tm: -lcrttms.o}}}                                            \
356      %{!Zbundle:%{pg:%{static:-lgcrt0.o}                                    \
357                      %{!static:%{object:-lgcrt0.o}                          \
358                                %{!object:%{preload:-lgcrt0.o}               \
359                                  %{!preload:-lgcrt1.o %(darwin_crt2)}}}}    \
360                 %{!pg:%{static:-lcrt0.o}                                    \
361                       %{!static:%{object:-lcrt0.o}                          \
362                                 %{!object:%{preload:-lcrt0.o}               \
363                                   %{!preload: %(darwin_crt1)                \
364                                               %(darwin_crt2)}}}}}}          \
365   %{shared-libgcc:%:version-compare(< 10.5 mmacosx-version-min= crt3.o%s)}"
366
367 /* We want a destructor last in the list.  */
368 #define ENDFILE_SPEC "%{fgnu-tm: -lcrttme.o}"
369
370 #define DARWIN_EXTRA_SPECS                                              \
371   { "darwin_crt1", DARWIN_CRT1_SPEC },                                  \
372   { "darwin_dylib1", DARWIN_DYLIB1_SPEC },                              \
373   { "darwin_minversion", DARWIN_MINVERSION_SPEC },
374
375 #define DARWIN_DYLIB1_SPEC                                              \
376   "%:version-compare(!> 10.5 mmacosx-version-min= -ldylib1.o)           \
377    %:version-compare(>< 10.5 10.6 mmacosx-version-min= -ldylib1.10.5.o)"
378
379 #define DARWIN_CRT1_SPEC                                                \
380   "%:version-compare(!> 10.5 mmacosx-version-min= -lcrt1.o)             \
381    %:version-compare(>< 10.5 10.6 mmacosx-version-min= -lcrt1.10.5.o)   \
382    %:version-compare(>= 10.6 mmacosx-version-min= -lcrt1.10.6.o)        \
383    %{fgnu-tm: -lcrttms.o}"
384
385 /* Default Darwin ASM_SPEC, very simple.  */
386 #define ASM_SPEC "-arch %(darwin_arch) \
387   %{Zforce_cpusubtype_ALL:-force_cpusubtype_ALL} \
388   %{static}"
389
390 /* Default ASM_DEBUG_SPEC.  Darwin's as cannot currently produce dwarf
391    debugging data.  */
392
393 #define ASM_DEBUG_SPEC  "%{g*:%{!g0:%{!gdwarf*:--gstabs}}}"
394
395 /* We still allow output of STABS.  */
396
397 #define DBX_DEBUGGING_INFO 1
398
399 #define DWARF2_DEBUGGING_INFO 1
400 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
401
402 #define DEBUG_FRAME_SECTION     "__DWARF,__debug_frame,regular,debug"
403 #define DEBUG_INFO_SECTION      "__DWARF,__debug_info,regular,debug"
404 #define DEBUG_ABBREV_SECTION    "__DWARF,__debug_abbrev,regular,debug"
405 #define DEBUG_ARANGES_SECTION   "__DWARF,__debug_aranges,regular,debug"
406 #define DEBUG_MACINFO_SECTION   "__DWARF,__debug_macinfo,regular,debug"
407 #define DEBUG_LINE_SECTION      "__DWARF,__debug_line,regular,debug"
408 #define DEBUG_LOC_SECTION       "__DWARF,__debug_loc,regular,debug"
409 #define DEBUG_PUBNAMES_SECTION  "__DWARF,__debug_pubnames,regular,debug"
410 #define DEBUG_PUBTYPES_SECTION  "__DWARF,__debug_pubtypes,regular,debug"
411 #define DEBUG_STR_SECTION       "__DWARF,__debug_str,regular,debug"
412 #define DEBUG_RANGES_SECTION    "__DWARF,__debug_ranges,regular,debug"
413 #define DEBUG_MACRO_SECTION    "__DWARF,__debug_macro,regular,debug"
414
415 #define TARGET_WANT_DEBUG_PUB_SECTIONS true
416
417 /* When generating stabs debugging, use N_BINCL entries.  */
418
419 #define DBX_USE_BINCL
420
421 /* There is no limit to the length of stabs strings.  */
422
423 #define DBX_CONTIN_LENGTH 0
424
425 /* gdb needs a null N_SO at the end of each file for scattered loading.  */
426
427 #define DBX_OUTPUT_NULL_N_SO_AT_MAIN_SOURCE_FILE_END
428
429 /* GCC's definition of 'one_only' is the same as its definition of 'weak'.  */
430 #define MAKE_DECL_ONE_ONLY(DECL) (DECL_WEAK (DECL) = 1)
431
432 /* Mach-O supports 'weak imports', and 'weak definitions' in coalesced
433    sections.  machopic_select_section ensures that weak variables go in
434    coalesced sections.  Weak aliases (or any other kind of aliases) are
435    not supported.  Weak symbols that aren't visible outside the .s file
436    are not supported.  */
437 #define ASM_WEAKEN_DECL(FILE, DECL, NAME, ALIAS)                        \
438   do {                                                                  \
439     if (ALIAS)                                                          \
440       {                                                                 \
441         warning (0, "alias definitions not supported in Mach-O; ignored");      \
442         break;                                                          \
443       }                                                                 \
444                                                                         \
445     if (! DECL_EXTERNAL (DECL) && TREE_PUBLIC (DECL))                   \
446       targetm.asm_out.globalize_label (FILE, NAME);                     \
447     if (DECL_EXTERNAL (DECL))                                           \
448       fputs ("\t.weak_reference ", FILE);                               \
449     else if (lookup_attribute ("weak_import", DECL_ATTRIBUTES (DECL)))  \
450       break;                                                            \
451     else if (TREE_PUBLIC (DECL))                                        \
452       fputs ("\t.weak_definition ", FILE);                              \
453     else                                                                \
454       break;                                                            \
455     assemble_name (FILE, NAME);                                         \
456     fputc ('\n', FILE);                                                 \
457   } while (0)
458
459 /* Darwin has the pthread routines in libSystem, which every program
460    links to, so there's no need for weak-ness for that.  */
461 #define GTHREAD_USE_WEAK 0
462
463 /* The Darwin linker imposes two limitations on common symbols: they
464    can't have hidden visibility, and they can't appear in dylibs.  As
465    a consequence, we should never use common symbols to represent
466    vague linkage. */
467 #undef USE_COMMON_FOR_ONE_ONLY
468 #define USE_COMMON_FOR_ONE_ONLY 0
469
470 /* The Darwin linker doesn't want coalesced symbols to appear in
471    a static archive's table of contents. */
472 #undef TARGET_WEAK_NOT_IN_ARCHIVE_TOC
473 #define TARGET_WEAK_NOT_IN_ARCHIVE_TOC 1
474
475 /* On Darwin, we don't (at the time of writing) have linkonce sections
476    with names, so it's safe to make the class data not comdat.  */
477 #define TARGET_CXX_CLASS_DATA_ALWAYS_COMDAT hook_bool_void_false
478
479 /* For efficiency, on Darwin the RTTI information that is always
480    emitted in the standard C++ library should not be COMDAT.  */
481 #define TARGET_CXX_LIBRARY_RTTI_COMDAT hook_bool_void_false
482
483 /* We make exception information linkonce. */
484 #undef TARGET_USES_WEAK_UNWIND_INFO
485 #define TARGET_USES_WEAK_UNWIND_INFO 1
486
487 /* We need to use a nonlocal label for the start of an EH frame: the
488    Darwin linker requires that a coalesced section start with a label.
489    Unfortunately, it also requires that 'debug' sections don't contain
490    labels.  */
491 #undef FRAME_BEGIN_LABEL
492 #define FRAME_BEGIN_LABEL (for_eh ? "EH_frame" : "Lframe")
493
494 /* Emit a label for the FDE corresponding to DECL.  EMPTY means
495    emit a label for an empty FDE. */
496 #define TARGET_ASM_EMIT_UNWIND_LABEL darwin_emit_unwind_label
497
498 /* Emit a label to separate the exception table.  */
499 #define TARGET_ASM_EMIT_EXCEPT_TABLE_LABEL darwin_emit_except_table_label
500
501 /* Our profiling scheme doesn't LP labels and counter words.  */
502
503 #define NO_PROFILE_COUNTERS     1
504
505 #undef  INIT_SECTION_ASM_OP
506 #define INIT_SECTION_ASM_OP
507
508 #undef  INVOKE__main
509
510 #define TARGET_ASM_CONSTRUCTOR  machopic_asm_out_constructor
511 #define TARGET_ASM_DESTRUCTOR   machopic_asm_out_destructor
512
513 /* Always prefix with an underscore.  */
514
515 #define USER_LABEL_PREFIX "_"
516
517 /* A dummy symbol that will be replaced with the function base name.  */
518 #define MACHOPIC_FUNCTION_BASE_NAME "<pic base>"
519
520 /* Don't output a .file directive.  That is only used by the assembler for
521    error reporting.  */
522 #undef  TARGET_ASM_FILE_START_FILE_DIRECTIVE
523 #define TARGET_ASM_FILE_START_FILE_DIRECTIVE false
524
525 #undef  TARGET_ASM_FILE_END
526 #define TARGET_ASM_FILE_END darwin_file_end
527
528 /* Because Mach-O relocations have a counter from 1 to 255 for the
529    section number they apply to, it is necessary to output all
530    normal sections before the LTO sections, to make sure that the
531    sections that may have relocations always have a section number
532    smaller than 255.  */
533 #undef  TARGET_ASM_LTO_START
534 #define TARGET_ASM_LTO_START darwin_asm_lto_start
535 #undef  TARGET_ASM_LTO_END
536 #define TARGET_ASM_LTO_END darwin_asm_lto_end
537
538 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
539   fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"\n", SIZE)
540
541 /* Give ObjC methods pretty symbol names.  */
542
543 #undef  OBJC_GEN_METHOD_LABEL
544 #define OBJC_GEN_METHOD_LABEL(BUF,IS_INST,CLASS_NAME,CAT_NAME,SEL_NAME,NUM) \
545   do { if (CAT_NAME)                                                    \
546          sprintf (BUF, "%c[%s(%s) %s]", (IS_INST) ? '-' : '+',          \
547                   (CLASS_NAME), (CAT_NAME), (SEL_NAME));                \
548        else                                                             \
549          sprintf (BUF, "%c[%s %s]", (IS_INST) ? '-' : '+',              \
550                   (CLASS_NAME), (SEL_NAME));                            \
551      } while (0)
552
553 #undef ASM_DECLARE_OBJECT_NAME
554 #define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL) \
555         darwin_asm_declare_object_name ((FILE), (NAME), (DECL))
556
557 /* The RTTI data (e.g., __ti4name) is common and public (and static),
558    but it does need to be referenced via indirect PIC data pointers.
559    The machopic_define_symbol calls are telling the machopic subsystem
560    that the name *is* defined in this module, so it doesn't need to
561    make them indirect.  */
562
563 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL)                     \
564   do {                                                                  \
565     const char *xname = NAME;                                           \
566     if (GET_CODE (XEXP (DECL_RTL (DECL), 0)) != SYMBOL_REF)             \
567       xname = IDENTIFIER_POINTER (DECL_NAME (DECL));                    \
568     if (! DECL_WEAK (DECL)                                              \
569         && ((TREE_STATIC (DECL)                                         \
570              && (!DECL_COMMON (DECL) || !TREE_PUBLIC (DECL)))           \
571             || DECL_INITIAL (DECL)))                                    \
572         machopic_define_symbol (DECL_RTL (DECL));                       \
573     if ((TREE_STATIC (DECL)                                             \
574          && (!DECL_COMMON (DECL) || !TREE_PUBLIC (DECL)))               \
575         || DECL_INITIAL (DECL))                                         \
576       (* targetm.encode_section_info) (DECL, DECL_RTL (DECL), false);   \
577     ASM_OUTPUT_FUNCTION_LABEL (FILE, xname, DECL);                      \
578   } while (0)
579
580 #undef TARGET_ASM_DECLARE_CONSTANT_NAME
581 #define TARGET_ASM_DECLARE_CONSTANT_NAME darwin_asm_declare_constant_name
582
583 /* Wrap new method names in quotes so the assembler doesn't gag.
584    Make Objective-C internal symbols local and in doing this, we need 
585    to accommodate the name mangling done by c++ on file scope locals.  */
586
587 int darwin_label_is_anonymous_local_objc_name (const char *name);
588
589 #undef  ASM_OUTPUT_LABELREF
590 #define ASM_OUTPUT_LABELREF(FILE,NAME)                                       \
591   do {                                                                       \
592        const char *xname = (NAME);                                           \
593        if (! strcmp (xname, MACHOPIC_FUNCTION_BASE_NAME))                    \
594          machopic_output_function_base_name(FILE);                           \
595        else if (xname[0] == '&' || xname[0] == '*')                          \
596          {                                                                   \
597            int len = strlen (xname);                                         \
598            if (len > 6 && !strcmp ("$stub", xname + len - 5))                \
599              machopic_validate_stub_or_non_lazy_ptr (xname);                 \
600            else if (len > 7 && !strcmp ("$stub\"", xname + len - 6))         \
601              machopic_validate_stub_or_non_lazy_ptr (xname);                 \
602            else if (len > 14 && !strcmp ("$non_lazy_ptr", xname + len - 13)) \
603              machopic_validate_stub_or_non_lazy_ptr (xname);                 \
604            else if (len > 15 && !strcmp ("$non_lazy_ptr\"", xname + len - 14)) \
605              machopic_validate_stub_or_non_lazy_ptr (xname);                 \
606            if (xname[1] != '"' && name_needs_quotes (&xname[1]))             \
607              fprintf (FILE, "\"%s\"", &xname[1]);                            \
608            else                                                              \
609              fputs (&xname[1], FILE);                                        \
610          }                                                                   \
611        else if (xname[0] == '+' || xname[0] == '-')                          \
612          fprintf (FILE, "\"%s\"", xname);                                    \
613        else if (darwin_label_is_anonymous_local_objc_name (xname))           \
614          fprintf (FILE, "L%s", xname);                                       \
615        else if (!strncmp (xname, ".objc_class_name_", 17))                   \
616          fprintf (FILE, "%s", xname);                                        \
617        else if (xname[0] != '"' && name_needs_quotes (xname))                \
618          asm_fprintf (FILE, "\"%U%s\"", xname);                              \
619        else                                                                  \
620          asm_fprintf (FILE, "%U%s", xname);                                  \
621   } while (0)
622
623 /* Output before executable code.  */
624 #undef TEXT_SECTION_ASM_OP
625 #define TEXT_SECTION_ASM_OP "\t.text"
626
627 /* Output before writable data.  */
628
629 #undef DATA_SECTION_ASM_OP
630 #define DATA_SECTION_ASM_OP "\t.data"
631
632 #undef  ALIGN_ASM_OP
633 #define ALIGN_ASM_OP            ".align"
634
635 #undef  ASM_OUTPUT_ALIGN
636 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
637   if ((LOG) != 0)                       \
638     fprintf (FILE, "\t%s\t%d\n", ALIGN_ASM_OP, (LOG))
639
640 /* The maximum alignment which the object file format can support in
641    bits.  For Mach-O, this is 2^15 bytes.  */
642
643 #undef  MAX_OFILE_ALIGNMENT
644 #define MAX_OFILE_ALIGNMENT (0x8000 * 8)
645
646 #define L2_MAX_OFILE_ALIGNMENT 15
647
648 /*  These are the three variants that emit referenced blank space.  */
649 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN)           \
650         darwin_output_aligned_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
651
652 #undef  ASM_OUTPUT_ALIGNED_DECL_LOCAL
653 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(FILE, DECL, NAME, SIZE, ALIGN)    \
654         darwin_asm_output_aligned_decl_local                            \
655                                   ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
656
657 #undef  ASM_OUTPUT_ALIGNED_DECL_COMMON
658 #define ASM_OUTPUT_ALIGNED_DECL_COMMON(FILE, DECL, NAME, SIZE, ALIGN)   \
659         darwin_asm_output_aligned_decl_common                           \
660                                    ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
661
662 /* The generic version, archs should over-ride where required.  */
663 #define MACHOPIC_NL_SYMBOL_PTR_SECTION ".non_lazy_symbol_pointer"
664
665 /* Declare the section variables.  */
666 #ifndef USED_FOR_TARGET
667 enum darwin_section_enum {
668 #define DEF_SECTION(NAME, FLAGS, DIRECTIVE, OBJC) NAME,
669 #include "darwin-sections.def"
670 #undef DEF_SECTION
671   NUM_DARWIN_SECTIONS
672 };
673 extern GTY(()) section * darwin_sections[NUM_DARWIN_SECTIONS];
674 #endif
675
676 #undef  TARGET_ASM_SELECT_SECTION
677 #define TARGET_ASM_SELECT_SECTION machopic_select_section
678
679 #undef  TARGET_ASM_FUNCTION_SECTION
680 #define TARGET_ASM_FUNCTION_SECTION darwin_function_section
681
682 #undef  TARGET_ASM_FUNCTION_SWITCHED_TEXT_SECTIONS
683 #define TARGET_ASM_FUNCTION_SWITCHED_TEXT_SECTIONS \
684         darwin_function_switched_text_sections
685
686 #undef  TARGET_ASM_SELECT_RTX_SECTION
687 #define TARGET_ASM_SELECT_RTX_SECTION machopic_select_rtx_section
688 #undef  TARGET_ASM_UNIQUE_SECTION
689 #define TARGET_ASM_UNIQUE_SECTION darwin_unique_section
690 #undef  TARGET_ASM_FUNCTION_RODATA_SECTION
691 #define TARGET_ASM_FUNCTION_RODATA_SECTION default_no_function_rodata_section
692
693 #undef  TARGET_ASM_TM_CLONE_TABLE_SECTION
694 #define TARGET_ASM_TM_CLONE_TABLE_SECTION darwin_tm_clone_table_section
695
696 #undef  TARGET_ASM_RELOC_RW_MASK
697 #define TARGET_ASM_RELOC_RW_MASK machopic_reloc_rw_mask
698
699
700 #define ASM_DECLARE_UNRESOLVED_REFERENCE(FILE,NAME)                     \
701     do {                                                                \
702          if (FILE) {                                                    \
703            if (MACHOPIC_INDIRECT)                                       \
704              fprintf (FILE, "\t.lazy_reference ");                      \
705            else                                                         \
706              fprintf (FILE, "\t.reference ");                           \
707            assemble_name (FILE, NAME);                                  \
708            fprintf (FILE, "\n");                                        \
709          }                                                              \
710        } while (0)
711
712 #define ASM_DECLARE_CLASS_REFERENCE(FILE,NAME)                          \
713     do {                                                                \
714          if (FILE) {                                                    \
715            fprintf (FILE, "\t");                                        \
716            assemble_name (FILE, NAME);                                  \
717            fprintf (FILE, "=0\n");                                      \
718            (*targetm.asm_out.globalize_label) (FILE, NAME);             \
719          }                                                              \
720        } while (0)
721
722 /* Globalizing directive for a label.  */
723 #define GLOBAL_ASM_OP "\t.globl "
724 #define TARGET_ASM_GLOBALIZE_LABEL darwin_globalize_label
725
726 /* Emit an assembler directive to set visibility for a symbol.  Used
727    to support visibility attribute and Darwin's private extern
728    feature.  */
729 #undef TARGET_ASM_ASSEMBLE_VISIBILITY
730 #define TARGET_ASM_ASSEMBLE_VISIBILITY darwin_assemble_visibility
731
732 /* Extra attributes for Darwin.  */
733 #define SUBTARGET_ATTRIBUTE_TABLE                                            \
734   /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,     \
735        affects_type_identity } */                                                    \
736   { "apple_kext_compatibility", 0, 0, false, true, false,                    \
737     darwin_handle_kext_attribute, false },                                   \
738   { "weak_import", 0, 0, true, false, false,                                 \
739     darwin_handle_weak_import_attribute, false }
740
741 #undef ASM_GENERATE_INTERNAL_LABEL
742 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
743   sprintf (LABEL, "*%s%ld", PREFIX, (long)(NUM))
744
745 #undef TARGET_ASM_MARK_DECL_PRESERVED
746 #define TARGET_ASM_MARK_DECL_PRESERVED darwin_mark_decl_preserved
747
748 /* Set on a symbol with SYMBOL_FLAG_FUNCTION or
749    MACHO_SYMBOL_FLAG_VARIABLE to indicate that the function or
750    variable has been defined in this translation unit.
751    When porting Mach-O to new architectures you need to make
752    sure these aren't clobbered by the backend.  */
753
754 #define MACHO_SYMBOL_FLAG_VARIABLE (SYMBOL_FLAG_MACH_DEP)
755 #define MACHO_SYMBOL_FLAG_DEFINED ((SYMBOL_FLAG_MACH_DEP) << 1)
756
757 /* Set on a symbol to indicate when fix-and-continue style code
758    generation is being used and the symbol refers to a static symbol
759    that should be rebound from new instances of a translation unit to
760    the original instance of the data.  */
761
762 #define MACHO_SYMBOL_STATIC ((SYMBOL_FLAG_MACH_DEP) << 2)
763
764 /* Symbolic names for various things we might know about a symbol.  */
765
766 enum machopic_addr_class {
767   MACHOPIC_UNDEFINED,
768   MACHOPIC_DEFINED_DATA,
769   MACHOPIC_UNDEFINED_DATA,
770   MACHOPIC_DEFINED_FUNCTION,
771   MACHOPIC_UNDEFINED_FUNCTION
772 };
773
774 /* Macros defining the various PIC cases.  */
775
776 #undef  MACHO_DYNAMIC_NO_PIC_P
777 #define MACHO_DYNAMIC_NO_PIC_P  (TARGET_MACHO_DYNAMIC_NO_PIC)
778 #undef  MACHOPIC_INDIRECT
779 #define MACHOPIC_INDIRECT       (flag_pic || MACHO_DYNAMIC_NO_PIC_P)
780 #define MACHOPIC_JUST_INDIRECT  (MACHO_DYNAMIC_NO_PIC_P)
781 #undef  MACHOPIC_PURE
782 #define MACHOPIC_PURE           (flag_pic && ! MACHO_DYNAMIC_NO_PIC_P)
783
784 #undef TARGET_ENCODE_SECTION_INFO
785 #define TARGET_ENCODE_SECTION_INFO  darwin_encode_section_info
786 #undef TARGET_STRIP_NAME_ENCODING
787 #define TARGET_STRIP_NAME_ENCODING  default_strip_name_encoding
788
789 #define GEN_BINDER_NAME_FOR_STUB(BUF,STUB,STUB_LENGTH)          \
790   do {                                                          \
791     const char *const stub_ = (STUB);                           \
792     char *buffer_ = (BUF);                                      \
793     strcpy (buffer_, stub_);                                    \
794     if (stub_[0] == '"')                                        \
795       {                                                         \
796         strcpy (buffer_ + (STUB_LENGTH) - 1, "_binder\"");      \
797       }                                                         \
798     else                                                        \
799       {                                                         \
800         strcpy (buffer_ + (STUB_LENGTH), "_binder");            \
801       }                                                         \
802   } while (0)
803
804 #define GEN_SYMBOL_NAME_FOR_SYMBOL(BUF,SYMBOL,SYMBOL_LENGTH)    \
805   do {                                                          \
806     const char *const symbol_ = (SYMBOL);                       \
807     char *buffer_ = (BUF);                                      \
808     if (name_needs_quotes (symbol_) && symbol_[0] != '"')       \
809       {                                                         \
810           sprintf (buffer_, "\"%s\"", symbol_);                 \
811       }                                                         \
812     else                                                        \
813       {                                                         \
814         strcpy (buffer_, symbol_);                              \
815       }                                                         \
816   } while (0)
817
818 /* Given a symbol name string, create the lazy pointer version
819    of the symbol name.  */
820
821 #define GEN_LAZY_PTR_NAME_FOR_SYMBOL(BUF,SYMBOL,SYMBOL_LENGTH)  \
822   do {                                                          \
823     const char *symbol_ = (SYMBOL);                             \
824     char *buffer_ = (BUF);                                      \
825     if (symbol_[0] == '"')                                      \
826       {                                                         \
827         strcpy (buffer_, "\"L");                                \
828         strcpy (buffer_ + 2, symbol_ + 1);                      \
829         strcpy (buffer_ + (SYMBOL_LENGTH), "$lazy_ptr\"");      \
830       }                                                         \
831     else if (name_needs_quotes (symbol_))                       \
832       {                                                         \
833         strcpy (buffer_, "\"L");                                \
834         strcpy (buffer_ + 2, symbol_);                          \
835         strcpy (buffer_ + (SYMBOL_LENGTH) + 2, "$lazy_ptr\"");  \
836       }                                                         \
837     else                                                        \
838       {                                                         \
839         strcpy (buffer_, "L");                                  \
840         strcpy (buffer_ + 1, symbol_);                          \
841         strcpy (buffer_ + (SYMBOL_LENGTH) + 1, "$lazy_ptr");    \
842       }                                                         \
843   } while (0)
844
845 #define EH_FRAME_SECTION_NAME   "__TEXT"
846 #define EH_FRAME_SECTION_ATTR ",coalesced,no_toc+strip_static_syms+live_support"
847
848 /* Java runtime class list.  */
849 #define JCR_SECTION_NAME "__DATA,jcr,regular,no_dead_strip"
850
851 #undef ASM_PREFERRED_EH_DATA_FORMAT
852 #define ASM_PREFERRED_EH_DATA_FORMAT(CODE,GLOBAL)  \
853   (((CODE) == 2 && (GLOBAL) == 1) \
854    ? (DW_EH_PE_pcrel | DW_EH_PE_indirect | DW_EH_PE_sdata4) : \
855      ((CODE) == 1 || (GLOBAL) == 0) ? DW_EH_PE_pcrel : DW_EH_PE_absptr)
856
857 #define ASM_OUTPUT_DWARF_DELTA(FILE,SIZE,LABEL1,LABEL2)  \
858   darwin_asm_output_dwarf_delta (FILE, SIZE, LABEL1, LABEL2)
859
860 #define ASM_OUTPUT_DWARF_OFFSET(FILE,SIZE,LABEL,BASE)  \
861   darwin_asm_output_dwarf_offset (FILE, SIZE, LABEL, BASE)
862
863 #define ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX(ASM_OUT_FILE, ENCODING, SIZE, ADDR, DONE)     \
864       if (ENCODING == ASM_PREFERRED_EH_DATA_FORMAT (2, 1)) {                            \
865         darwin_non_lazy_pcrel (ASM_OUT_FILE, ADDR);                                     \
866         goto DONE;                                                                      \
867       }
868
869 /* Experimentally, putting jump tables in text is faster on SPEC.
870    Also this is needed for correctness for coalesced functions.  */
871
872 #ifndef JUMP_TABLES_IN_TEXT_SECTION
873 #define JUMP_TABLES_IN_TEXT_SECTION 1
874 #endif
875
876 #define TARGET_TERMINATE_DW2_EH_FRAME_INFO false
877
878 #define TARGET_ASM_INIT_SECTIONS darwin_init_sections
879 #undef TARGET_ASM_NAMED_SECTION
880 #define TARGET_ASM_NAMED_SECTION darwin_asm_named_section
881
882 #define DARWIN_REGISTER_TARGET_PRAGMAS()                        \
883   do {                                                          \
884     if (!flag_preprocess_only)                                  \
885       cpp_register_pragma (parse_in, NULL, "mark",              \
886                            darwin_pragma_ignore, false);        \
887     c_register_pragma (0, "options", darwin_pragma_options);    \
888     c_register_pragma (0, "segment", darwin_pragma_ignore);     \
889     c_register_pragma (0, "unused", darwin_pragma_unused);      \
890     c_register_pragma (0, "ms_struct", darwin_pragma_ms_struct); \
891   } while (0)
892
893 #undef ASM_APP_ON
894 #define ASM_APP_ON ""
895 #undef ASM_APP_OFF
896 #define ASM_APP_OFF ""
897
898 void darwin_register_frameworks (const char *, const char *, int);
899 void darwin_register_objc_includes (const char *, const char *, int);
900 #define TARGET_EXTRA_PRE_INCLUDES darwin_register_objc_includes
901 #define TARGET_EXTRA_INCLUDES darwin_register_frameworks
902
903 void add_framework_path (char *);
904 #define TARGET_OPTF add_framework_path
905
906 #define TARGET_POSIX_IO
907
908 /* All new versions of Darwin have C99 functions.  */
909
910 #define TARGET_C99_FUNCTIONS 1
911
912 #define WINT_TYPE "int"
913
914 /* Every program on darwin links against libSystem which contains the pthread
915    routines, so there's no need to explicitly call out when doing threaded
916    work.  */
917
918 #undef GOMP_SELF_SPECS
919 #define GOMP_SELF_SPECS ""
920 #undef GTM_SELF_SPECS
921 #define GTM_SELF_SPECS ""
922
923 /* Darwin disables section anchors by default.  
924    They should be enabled per arch where support exists in that arch.  */
925 #define TARGET_ASM_OUTPUT_ANCHOR NULL
926 #define DARWIN_SECTION_ANCHORS 0
927
928 #define HAVE_ENABLE_EXECUTE_STACK
929
930 /* For Apple KEXTs, we make the constructors return this to match gcc
931    2.95.  */
932 #define TARGET_CXX_CDTOR_RETURNS_THIS (darwin_kextabi_p)
933 #define TARGET_KEXTABI flag_apple_kext
934
935 /* We have target-specific builtins.  */
936 #define TARGET_FOLD_BUILTIN darwin_fold_builtin
937
938 #define TARGET_N_FORMAT_TYPES 1
939 #define TARGET_FORMAT_TYPES darwin_additional_format_types
940
941 #ifndef USED_FOR_TARGET
942 extern void darwin_driver_init (unsigned int *,struct cl_decoded_option **);
943 #define GCC_DRIVER_HOST_INITIALIZATION \
944   darwin_driver_init (&decoded_options_count, &decoded_options)
945 #endif
946
947 /* The Apple assembler and linker do not support constructor priorities.  */
948 #undef SUPPORTS_INIT_PRIORITY
949 #define SUPPORTS_INIT_PRIORITY 0
950
951 /* When building cross-compilers (and native crosses) we shall default to 
952    providing an osx-version-min of this unless overridden by the User.  */
953 #define DEF_MIN_OSX_VERSION "10.4"
954
955 #endif /* CONFIG_DARWIN_H */